dev-gtm-claude-skills

(★ 111)

Open-source Claude skills for GEO, AI discoverability, and developer GTM workflows. Built for developer-focused companies that want their documentation to be found, parsed, and cited by AI systems.

파일 탐색기

파일 수가 많아 일부만 표시됩니다. 전체 파일은 위 다운로드 버튼으로 확인해 주세요.

  • .gitignore
  • AGENTS.md
  • CLAUDE.md
  • LICENSE
  • pyproject.toml
  • README.md
  • requirements.txt

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

파일 목록이 많아 일부만 표시됩니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

aider

설명 보기 ▼

원하는 LLM과 페어 프로그래밍을 진행.
더 많은 정보: <https://github.com/Aider-AI/aider>.

aider --model {{model_name}} --api-key {{your_api_key}}

새 프로젝트를 시작하거나 기존 코드베이스에서 작업:

aider {{path/to/file1 path/to/file2 ...}}

특정 파일에 새로운 기능이나 테스트 케이스를 추가:

aider {{path/to/file}} --describe "{{bug_description}}"

버그를 설명하고 `aider`가 이를 수정하도록 함:

🔍

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:

🔍

npx

설명 보기 ▼

이 명령은 `npm exec`의 별칭입니다.

tldr npm exec

자세한 내용은 원본 명령을 참고하세요:

🔍

openclaw gateway

설명 보기 ▼

Start the OpenClaw gateway server (control plane).

openclaw gateway --allow-unconfigured

Start the gateway on the default port (18789):

openclaw gateway --allow-unconfigured --port {{18789}}

Start the gateway on a specific port:

openclaw gateway --allow-unconfigured --verbose

Start the gateway with verbose logging:

🔍

openclaw

설명 보기 ▼

개인 기기에서 실행되는 개인 AI 어시스턴트.
`onboard`, `agent`, `doctor`와 같은 일부 하위 명령어는 별도의 사용법 문서를 가짐.
관련 항목: `zeroclaw`.
더 많은 정보: <https://docs.openclaw.ai/cli>.

openclaw onboard --install-daemon

게이트웨이 및 채널 설정을 위한 온보딩 실행:

openclaw gateway --allow-unconfigured --port {{18789}} --verbose

게이트웨이 서버 시작:

openclaw message send {{[-t|--target]}} {{+1234567890}} {{[-m|--message]}} "{{Hello}}"

연락처에 메시지 전송:

🔍

pip install

설명 보기 ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

python3

설명 보기 ▼

이 명령은 `python`의 별칭입니다.

tldr python

자세한 내용은 원본 명령을 참고하세요:

// repository documentation