marketing-machine
Claim-provenance and brand-compliance harness for marketing content: scans your codebase for product truth, lints copy against it, renders on-brand cards and video. Installs as a Claude Code plugin/skill, Cursor rule, or AGENTS.md section.
파일 탐색기
- marketplace.json
- plugin.json
- test.yml
- browser.mjs
- claims.mjs
- config.mjs
- contrast.mjs
- detect.mjs
- drive.mjs
- fonts.mjs
- html.mjs
- post.mjs
- update.mjs
- core.json
- lang.de.json
- lang.en.json
- lang.es.json
- lang.fr.json
- lang.tr.json
- carousel.mjs
- cli.mjs
- doctor.mjs
- init.mjs
- lint.mjs
- record.mjs
- render-card.mjs
- report.mjs
- scan.mjs
- video-guide.md
- SKILL.md
- card.html
- marketing-lint.yml
- scene.html
- carousel.test.mjs
- claims.test.mjs
- config.test.mjs
- contrast.test.mjs
- detect.test.mjs
- drive.test.mjs
- field-report.test.mjs
- helpers.mjs
- html.test.mjs
- init.test.mjs
- lint.test.mjs
- render-card.test.mjs
- report.test.mjs
- rules.test.mjs
- scan.test.mjs
- update.test.mjs
- .gitignore
- CLAUDE.md
- CONTRIBUTING.md
- LICENSE
- marketing.config.example.json
- package.json
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
write
설명 보기 ▼
write
데이터를 메모리에 저장.
더 많은 정보: <https://www.oreilly.com/library/view/cisco-ios-in/0596008694/re869.html#book-content>.
write memory
현재 설정을 메모리에 저장:
write {{username}} {{terminal_id}}
지정된 사용자에게 주어진 터미널 ID로 메시지 전송:
write {{username}} {{terminal_id}}
Send a message to a given user on a given terminal ID:
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git pull
설명 보기 ▼
git pull
Fetch branch from a remote repository and merge it to local repository.
git pull
Download changes from default remote repository and merge it:
git pull {{[-r|--rebase]}}
Download changes from default remote repository and use fast-forward:
git pull {{remote_name}}
Download changes from a specific remote repository:
git submodule
설명 보기 ▼
git submodule
Inspect, update, and manage submodules.
git submodule
View existing submodules and the checked-out commit for each one:
git submodule update --init --recursive
Install a repository's submodules (listed in `.gitmodules`):
git submodule add {{repository_url}}
Add a Git repository as a submodule of the current one:
most
설명 보기 ▼
most
하나 또는 여러 파일을 대화형으로 열어 스크롤 및 검색을 할 수 있습니다.
더 많은 정보: <https://manned.org/most>.
most {{path/to/file}}
파일 열기:
most {{path/to/file1 path/to/file2 ...}}
여러 파일 열기:
most {{path/to/file}} +/{{string}}
"문자열"의 첫 번째 발생 지점에서 파일 열기:
node
설명 보기 ▼
node
서버 측 JavaScript 플랫폼 (Node.js).
더 많은 정보: <https://nodejs.org/docs/latest/api/cli.html#options>.
node {{path/to/file}}
JavaScript 파일 실행:
node
REPL(대화형 셸) 시작:
node --watch {{path/to/file}}
지정된 파일을 실행하고 가져온 파일이 변경될 때 프로세스를 재시작 (Node.js 버전 18.11+ 필요):
npm link
설명 보기 ▼
npm link
Symlink a local package into the global `node_modules` or another project for development.
npm {{[ln|link]}}
Symlink the current package globally:
npm {{[ln|link]}} {{package_name}}
Link a globally linked package into another project's `node_modules`:
npm {{[r|unlink]}} {{package_name}}
Unlink a package from the current project:
npm test
설명 보기 ▼
npm test
This command is an alias of `npm run test`.
tldr npm run
View documentation for the original command:
npm
설명 보기 ▼
npm
JavaScript 및 Node.js 패키지 관리자.
Node.js 프로젝트 및 모듈 의존성을 관리합니다.
더 많은 정보: <https://docs.npmjs.com/cli/npm/>.
npm init {{[-y|--yes]}}
기본값으로 `package.json` 파일 생성 (`--yes`를 생략하면 대화식으로 진행):
npm {{[i|install]}}
package.json에 의존성으로 나열된 모든 패키지를 다운로드:
npm {{[i|install]}} {{package_name}}@{{version}}
특정 버전의 패키지를 다운로드하고 `package.json`의 의존성 목록에 추가:
npx
설명 보기 ▼
npx
이 명령은 `npm exec`의 별칭입니다.
tldr npm exec
자세한 내용은 원본 명령을 참고하세요:
oneLiner
설명 보기 ▼
oneLiner
영어를 OpenAI, Claude, 로컬 LLM을 사용해 쉘 명령으로 변환하는 도구(사용자 지식 대체가 아닌, 학습을 돕는 것을 목표로 함).
더 많은 정보: <https://github.com/dorochadev/oneliner#-usage-flags>.
oneliner "{{find all jpg files larger than 10MB}}"
영어로부터 쉘 명령 생성:
oneliner {{[-e|--explain]}} "{{delete node_modules recursively}}"
명령이 수행하는 작업 설명:
oneliner {{[-c|--clipboard]}} "{{compress all pdfs}}"
생성된 명령을 클립보드에 복사:
mono
설명 보기 ▼
mono
.NET 프레임워크를 위한 런타임.
더 많은 정보: <https://www.mono-project.com/docs/>.
mono --debug {{path/to/program.exe}}
디버그 모드로 .NET 어셈블리 실행:
mono {{path/to/program.exe}}
.NET 어셈블리 실행:
lib
설명 보기 ▼
lib
Microsoft Library Manager(라이브러리 관리 도구)로, 오브젝트 파일로부터 정적 라이브러리를 생성하고 관리.
더 많은 정보: <https://learn.microsoft.com/cpp/build/reference/lib-reference>.
lib /OUT :{{path\to\library.lib}} {{path\to\file1.obj path\to\file2.obj ...}}
오브젝트 파일로부터 정적 라이브러리 생성:
lib /LIST {{path\to\library.lib}}
라이브러리의 내용 목록 표시:
lib {{path\to\library.lib}} {{path\to\file.obj}}
기존 라이브러리에 오브젝트 파일 추가:
