ワンクリックで
prime
Load project context. Use at the start of every session. Supports quick (default) and full modes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Load project context. Use at the start of every session. Supports quick (default) and full modes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Scan project, then generate or reconcile .primeignore patterns for smarter /prime loading
Run WCAG accessibility audits on frontend projects. Checks HTML semantics, ARIA usage, color contrast, and keyboard navigation patterns.
Generate OpenAPI specs from code, validate API contracts, and check for breaking changes between versions.
Backend architecture patterns, API design, database optimization, and server-side best practices for Node.js, Express, and Next.js API routes.
Incrementally fix TypeScript and build errors one at a time with verification. Invokes the build-error-resolver agent.
Create or verify a checkpoint in your workflow
| name | prime |
| description | Load project context. Use at the start of every session. Supports quick (default) and full modes. |
| argument-hint | [quick|full] |
Check $ARGUMENTS for mode. If "$ARGUMENTS" is "full", follow Full Mode below. Otherwise follow Quick Mode (default).
Build sufficient understanding of the codebase by analyzing structure, documentation, and key files efficiently. Uses ~35-40K tokens instead of 85K+ (60% savings).
List tracked files (first 50 only):
git ls-files | head -50
Show directory structure (depth 2 max):
find . -maxdepth 2 -type d -not -path '*/\.git/*' -not -path '*/__pycache__/*' -not -path '*/node_modules/*' | sort
Check root directory:
ls -la | head -20
ALWAYS READ:
CLAUDE.md (full - contains project-specific rules and context)requirements.txt or package.json or similar (full - dependencies)READ WITH LIMITS:
README.md (limit=100 lines - overview only, skip detailed usage)app.py, index.ts, main.py (limit=100 lines - configuration and structure)SKIP IN QUICK MODE:
Use grep/find to identify structure without reading full files:
For Python projects:
# List all modules
ls -la modules/ src/ app/ 2>/dev/null | head -30
# Get function/class signatures (don't read full files)
grep -n "^class \|^def " *.py modules/*.py src/*.py 2>/dev/null | head -40
For JavaScript/TypeScript projects:
# List all source files
ls -la src/ lib/ components/ 2>/dev/null | head -30
# Get export signatures
grep -n "^export \|^class \|^function " src/**/*.{js,ts,tsx} 2>/dev/null | head -40
Configuration files:
pyproject.toml, package.json, tsconfig.json, composer.json (full - usually short)SKIP full reads of:
Recent activity (5 commits, not 10):
git log -5 --oneline
Current branch and status (compact):
git status --short
git branch --show-current
Python version check (if Python project):
python --version 2>&1
Don't read test files, just list:
ls -la tests/ test/ __tests__/ 2>/dev/null | head -20
find tests/ -name "*.py" -o -name "*.js" -o -name "*.ts" 2>/dev/null | head -10
Provide a concise summary covering:
Keep the summary concise - use bullet points and clear headers. Focus on actionable information.
Target: 35-40K tokens (vs 85K+ for full mode)
| Aspect | Quick Mode | Full Mode |
|---|---|---|
| Token usage | 35-40K | 85K+ |
| README | First 100 lines | Full read |
| Source files | grep signatures only | Full reads |
| Test files | List only | Read examples |
| Docs | CLAUDE.md only | All docs |
| Git history | 5 commits | 10 commits |
| File listing | head -50 | All files |
| Use case | 90% of sessions | Deep dives |
Token Usage: 85K+ tokens For faster loading: Use prime without arguments (quick mode - 35-40K tokens)
Build comprehensive understanding of the codebase by analyzing structure, documentation, and key files in depth.
List all tracked files:
git ls-files
Show directory structure: On Windows/Linux, run:
# If tree is available
tree -L 3 -I 'node_modules|__pycache__|.git|dist|build|.venv'
# Otherwise use ls/dir
ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/'
Based on the structure, identify and read:
Check recent activity:
git log -10 --oneline
Check current branch and status:
git status
Provide a concise summary covering:
Make this summary easy to scan - use bullet points and clear headers.
Full Mode: 85K+ tokens
| Aspect | Quick Mode | Full Mode |
|---|---|---|
| Token usage | 35-40K | 85K+ |
| README | First 100 lines | Full read |
| Source files | grep signatures only | Full reads |
| Test files | List only | Read examples |
| Docs | CLAUDE.md only | All docs |
| Git history | 5 commits | 10 commits |
| File listing | head -50 | All files |
| Use case | 90% of sessions | Deep dives |