一键导入
camp-add-skill
기존 캠프에 새 스킬을 추가한다. campforge add-skill CLI를 사용하여 scaffold를 생성하거나 npm 패키지 참조를 추가한다. Triggers: "스킬 추가해줘", "add a skill to this camp"
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
기존 캠프에 새 스킬을 추가한다. campforge add-skill CLI를 사용하여 scaffold를 생성하거나 npm 패키지 참조를 추가한다. Triggers: "스킬 추가해줘", "add a skill to this camp"
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
V8 platform admin API operations via GraphQL. Use when asked to manage users, grant or query credits, manage verses, game payments, coupons, analytics, or comments. Triggers on requests like "give credits to user", "search user", "set verse featured", "generate coupons", "find spam comments".
Triage Sentry issues and run Seer root-cause analysis using sentry-cli and the official Sentry MCP server (stdio transport, auth-token based — no OAuth). Covers token-auth MCP setup, issue/event querying, Seer autofix via a direct-API workaround, and manual event ingest with send-event. Use when asked to look at a Sentry issue, find what errors are firing, get a root-cause analysis / Seer analysis, send a test event to Sentry, or wire Sentry up for an agent.
Google Sheets operations via gws (Google Workspace CLI). Use when asked to read, write, append, or manage spreadsheets in Google Drive. Triggers on requests like "read the spreadsheet", "append rows to sheet", "create a new spreadsheet", "list Drive files", "share sheet with team".
flex API를 크롤링하여 로컬 데이터를 최신 상태로 갱신한다. Triggers: "데이터 최신화", "크롤링", "DB 갱신", "데이터 새로 가져와"
flex-ax CLI를 통해 SQL 쿼리를 실행하여 결재/근태/사용자 데이터를 조회한다. Triggers: "결재 현황", "휴가 조회", "사용자 검색", "데이터 조회"
Interact with A2A (Agent2Agent) protocol agents via the a2x CLI. Handles installation, agent card inspection, OAuth2 device-flow and SIWE bearer authentication, and blocking / streaming message exchange. Use when asked to talk to an A2A agent, send a message to an A2A endpoint, authenticate with an A2A service, or inspect an A2A agent card.
| name | camp-add-skill |
| description | 기존 캠프에 새 스킬을 추가한다. campforge add-skill CLI를 사용하여 scaffold를 생성하거나 npm 패키지 참조를 추가한다. Triggers: "스킬 추가해줘", "add a skill to this camp" |
| license | Apache-2.0 |
| metadata | {"author":"campforge","version":"0.1"} |
이미 존재하는 캠프에 새로운 스킬을 추가하고 싶을 때.
CAMPFORGE_CLI="<campforge-project>/cli"
cost-analyzer)새 스킬 scaffold 생성:
cd $CAMPFORGE_CLI && ./node_modules/.bin/tsx bin/campforge.ts add-skill \
--camp <camp-directory> \
--skill <skill-id> \
--description "스킬 설명"
npm 패키지 참조 추가:
cd $CAMPFORGE_CLI && ./node_modules/.bin/tsx bin/campforge.ts add-skill \
--camp <camp-directory> \
--skill <skill-id> \
--source reference \
--ref @campforge/some-package
CLI 옵션:
--camp <dir> — 대상 캠프 디렉토리 (필수)--skill <id> — 스킬 ID (필수)--source <type> — scaffold | reference (기본: scaffold)--ref <ref> — npm 패키지명 (reference 소스일 때 필수)--description <desc> — 스킬 설명scaffold로 생성한 경우 skills/{skill-id}/SKILL.md에 TODO가 남아있다. 실제 내용으로 채운다.
스킬을 추가한 후:
package.json에 새 스킬 의존성 추가 (skillpm이 자동 해석)install.sh에 tarball URL 추가scripts/install-common.sh에 공통 함수를 추가하고 install.sh에서 호출manifest.yaml의 skills.optional에 자동 추가됨skills/{skill-id}/SKILL.md 파일 생성 확인install.sh에 tarball URL 추가 확인camp-validate로 전체 검증Adding skill "cost-analyzer" to /path/to/camp
Scaffold created at skills/cost-analyzer/SKILL.md
Added "cost-analyzer" to manifest.yaml (optional)