Project setup
Skill shioki/Cursor-Knowledge-Management-System/templates/.agents/skills/project-setup
Cursor / Claude Code / Codex 向けの知識管理テンプレート。Agent Skills 7 種とカスタムコマンド 7 種。v5.0.0 で .agents/skills 正規化、Cursor Plugin・gh skill・Microsoft APM・AGENTS.md に対応。
npx -y skills add shioki/Cursor-Knowledge-Management-System --skill project-setupAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
新しいプロジェクトにCursor Knowledge Management Systemを導入する際に使用。初期セットアップ、構造検証、カスタマイズガイドを提供する。
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
3.9 KB, as published. Nobody here has run it
プロジェクトセットアップ
新しいプロジェクトに Cursor Knowledge Management System を導入するためのスキルです。
When to Use
- 新しいプロジェクトに知識管理システムを導入したいとき
- 既存プロジェクトにスキルとコマンドを追加したいとき
- セットアップの正しさを検証したいとき
Instructions
1. 初期セットアップ
以下のスクリプトでスキルとコマンドを一括コピーできます。init.sh は Mac/Linux 用です。Windows では手動で Copy-Item を実行するか、Git Bash で init.sh を実行するか、init.ps1(同 scripts/ に用意されている場合)を使用してください。
デフォルト (v5.0.0~): 公式ディレクトリ .agents/skills に配置(Cursor 3.x / Claude Code / Codex で共有)
bash path/to/cursor-knowledge-management-system/templates/.agents/skills/project-setup/scripts/init.sh /path/to/target-project
レガシー .claude/skills モード: Claude Code 既存プロジェクト互換用
bash path/to/.../init.sh /path/to/target-project --legacy-claude
Cursor のみ: .cursor/skills に配置(Cursor のみで完結させたい場合)
bash path/to/.../init.sh /path/to/target-project --cursor-only
または手動でコピー(推奨 = .agents/skills):
# Mac/Linux
cp -r templates/.agents/skills /path/to/your-project/.agents/skills
cp -r templates/.cursor/commands /path/to/your-project/.cursor/commands
cp templates/.cursorignore /path/to/your-project/.cursorignore
mkdir -p /path/to/your-project/.agents/debug-sessions
# Windows (PowerShell)
Copy-Item -Path "templates\.agents\skills" -Destination ".agents\skills" -Recurse
Copy-Item -Path "templates\.cursor\commands" -Destination ".cursor\commands" -Recurse
Copy-Item -Path "templates\.cursorignore" -Destination ".cursorignore"
New-Item -ItemType Directory -Path ".agents\debug-sessions" -Force
2. 構造の検証
セットアップ後、以下のスクリプトで構造を検証できます。Windows の場合は Git Bash で実行してください。
bash .agents/skills/project-setup/scripts/validate.sh
# (.claude/skills / .cursor/skills も検出対象)
3. 初期カスタマイズ(推奨順序)
セットアップ後、以下の順序でカスタマイズを進めてください:
最小限の更新(10分)
/update-contextコマンドでプロジェクト基本情報を記入/record-decisionコマンドで最初の技術判断を記録
推奨更新(20分)
上記に加えて:
3. /add-pattern コマンドで初期パターンを登録
4. team-standards スキルの SKILL.md をプロジェクトの規約に更新(.agents/skills/team-standards/SKILL.md など)
フル活用(30分)
上記すべてに加えて: 5. debug-workflow のテンプレートを確認 6. improvement-tracking の目標を設定
4. 動作確認
- Cursor Settings > Rules でスキルが検出されることを確認(Cursor 3.x では
.agents/skillsと.cursor/skillsを公式に読み込み) - チャットで
/を入力してコマンドが表示されることを確認 - エージェントとの対話でスキルが自動適用されることを確認
関連
- Cursor Plugin 配布や Marketplace 提出については
docs/advanced/plugin-development.mdを参照 gh skill installによる導入については README を参照- Microsoft APM 経由の導入については
docs/reference/apm-integration.mdを参照