mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-03-31 06:03:29 +08:00
- Fix MD012 trailing blank lines in commands/projects.md and commands/promote.md - Fix MD050 strong-style in continuous-learning-v2 (escape __tests__ as inline code) - Extract doc-file-warning hook to standalone script to fix hooks validator regex parsing - Update session-end test to match #317 behavior (always update summary content) - Allow shell script hooks in integration test format validation All 992 tests passing.
40 lines
853 B
Markdown
40 lines
853 B
Markdown
---
|
|
name: projects
|
|
description: List known projects and their instinct statistics
|
|
command: true
|
|
---
|
|
|
|
# Projects Command
|
|
|
|
List project registry entries and per-project instinct/observation counts for continuous-learning-v2.
|
|
|
|
## Implementation
|
|
|
|
Run the instinct CLI using the plugin root path:
|
|
|
|
```bash
|
|
python3 "${CLAUDE_PLUGIN_ROOT}/skills/continuous-learning-v2/scripts/instinct-cli.py" projects
|
|
```
|
|
|
|
Or if `CLAUDE_PLUGIN_ROOT` is not set (manual installation):
|
|
|
|
```bash
|
|
python3 ~/.claude/skills/continuous-learning-v2/scripts/instinct-cli.py projects
|
|
```
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
/projects
|
|
```
|
|
|
|
## What to Do
|
|
|
|
1. Read `~/.claude/homunculus/projects.json`
|
|
2. For each project, display:
|
|
- Project name, id, root, remote
|
|
- Personal and inherited instinct counts
|
|
- Observation event count
|
|
- Last seen timestamp
|
|
3. Also display global instinct totals
|