create-rule
Create Cursor rules for persistent AI guidance. Use when the user wants to create a rule, add coding standards, set up project conventions, configure…
Use when the user asks what the codebase intel knows, or runs /gsd-intel query, status, diff, or refresh. Queries or rebuilds the .planning/intel/ files, and stops with a disabled message when intel is off in .planning/config.json.
$ npx -y skills add coco-research/coco --skill gsd-intel --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/gsd-intelContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when the user asks what the codebase intel knows, or runs /gsd-intel query, status, diff, or refresh. Queries or rebuilds the .planning/intel/ files, and stops with a disabled message when intel is off in .planning/config.json.
name: gsd-intel description: "Use when the user asks what the codebase intel knows, or runs /gsd-intel query, status, diff, or refresh. Queries or rebuilds the .planning/intel/ files, and stops with a disabled message when intel is off in .planning/config.json." argument-hint: "[query <term>|status|diff|refresh]" allowed-tools: - Read - Bash - Task
**STOP -- DO NOT READ THIS FILE. You are already reading it. This prompt was injected into your context by Claude Code's command system. Using the Read tool on this file wastes tokens. Begin executing Step 0 immediately.**
**Before ANY tool calls**, display this banner:
GSD > INTEL
Then proceed to Step 1.
Check if intel is enabled by reading `.planning/config.json` directly using the Read tool.
**DO NOT use the gsd-tools config get-value command** -- it hard-exits on missing keys.
1. Read `.planning/config.json` using the Read tool 2. If the file does not exist: display the disabled message below and **STOP** 3. Parse the JSON content. Check if `config.intel && config.intel.enabled === true` 4. If `intel.enabled` is NOT explicitly `true`: display the disabled message below and **STOP** 5. If `intel.enabled` is `true`: proceed to Step 2
**Disabled message:**
GSD > INTEL Intel system is disabled. To activate: node $HOME/.claude/get-shit-done/bin/gsd-tools.cjs config-set intel.enabled true Then run /gsd-intel refresh to build the initial index.
---
Parse `$ARGUMENTS` to determine the operation mode:
| Argument | Action | |----------|--------| | `query <term>` | Run inline query (Step 2a) | | `status` | Run inline status check (Step 2b) | | `diff` | Run inline diff check (Step 2c) | | `refresh` | Spawn intel-updater agent (Step 3) | | No argument or unknown | Show usage message |
**Usage message** (shown when no argument or unrecognized argument):
GSD > INTEL Usage: /gsd-intel <mode> Modes: query <term> Search intel files for a term status Show intel file freshness and staleness diff Show changes since last snapshot refresh Rebuild all intel files from codebase analysis
Run:
node $HOME/.claude/get-shit-done/bin/gsd-tools.cjs intel query <term>
Parse the JSON output and display results:
**STOP** after displaying results. Do not spawn an agent.
Run:
node $HOME/.claude/get-shit-done/bin/gsd-tools.cjs intel status
Parse the JSON output and display each intel file with:
**STOP** after displaying status. Do not spawn an agent.
Run:
node $HOME/.claude/get-shit-done/bin/gsd-tools.cjs intel diff
Parse the JSON output and display:
If no snapshot exists, suggest running `refresh` first.
**STOP** after displaying diff. Do not spawn an agent.
---
Display before spawning:
GSD > Spawning intel-updater agent to analyze codebase...
Spawn a Task:
Task(
description="Refresh codebase intelligence files",
prompt="You are the gsd-intel-updater agent. Your job is to analyze this codebase and write/update intelligence files in .planning/intel/.
Project root: ${CWD}
gsd-tools path: $HOME/.claude/get-shit-done/bin/gsd-tools.cjs
Instructions:
1. Analyze the codebase structure, dependencies, APIs, and architecture
2. Write JSON intel files to .planning/intel/ (stack.json, api-map.json, dependency-graph.json, file-roles.json, arch-decisions.json)
3. Each file must have a _meta object with updated_at timestamp
4. Use gsd-tools intel extract-exports <file> to analyze source files
5. Use gsd-tools intel patch-meta <file> to update timestamps after writing
6. Use gsd-tools intel validate to check your output
When complete, output: ## INTEL UPDATE COMPLETE
If something fails, output: ## INTEL UPDATE FAILED with details."
)Wait for the agent to complete.
---
After the agent completes, run:
node $HOME/.claude/get-shit-done/bin/gsd-tools.cjs intel status
Display a summary showing:
---
1. DO NOT spawn an agent for query/status/diff operations -- these are inline CLI calls 2. DO NOT modify intel files directly -- the agent handles writes during refresh 3. DO NOT skip the config gate check 4. DO NOT use the gsd-tools config get-value CLI for the config gate -- it exits on missing keys
CoCo Super Intelligence is the orchestration layer that turns Claude Code, Cursor, or Codex into an engineering department: a routed advisory board, 226 skills, 386 commands, persistent state. Local. Open-core — MIT core; Super Intelligence is proprietary, own-use.
Repo: coco-research/coco
Create Cursor rules for persistent AI guidance. Use when the user wants to create a rule, add coding standards, set up project conventions, configure…
Guides users through creating effective Agent Skills for Cursor. Use when the user wants to create, write, or author a new skill, or asks about skill…
Create custom subagents for specialized AI tasks. Use when the user wants to create a new type of subagent, set up task-specific agents, configure code…
Convert 'Applied intelligently' Cursor rules (.cursor/rules/*.mdc) and slash commands (.cursor/commands/*.md) to Agent Skills format (.cursor/skills/). Use…
Modify Cursor/VSCode user settings in settings.json. Use when the user wants to change editor settings, preferences, configuration, themes, font size, tab…
Train and optimize AI agents using Microsoft's Agent Lightning framework with reinforcement learning. Use when setting up agent training, instrumenting agents…