一键导入
start
Entry point for Agent Kit. Use this when starting a session in the template repository to create or open a project.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Entry point for Agent Kit. Use this when starting a session in the template repository to create or open a project.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Cross-project audit and sync. Backs up, bootstraps, promotes, syncs, and verifies all downstream projects.
Structured pre-planning research. Explores codebase, asks clarifying questions, and produces a brainstorm output file for /plan-feature input.
Capture knowledge from development sessions. Debug patterns, architecture decisions, framework gotchas, and integration learnings compound over time.
Load project context and show current status. Use at the start of a session or when context is needed.
Run parallel code reviews using specialized agents (security, performance, simplicity, nextjs-react). Produces a structured report.
Initialize a new project from Agent Kit boilerplate. Use when creating a new downstream project.
| name | start |
| description | Entry point for Agent Kit. Use this when starting a session in the template repository to create or open a project. |
| disable-model-invocation | true |
| allowed-tools | Bash, Read, Write, Edit |
This skill is the entry point when working with the Agent Kit template. It guides you to create a new project or open an existing one.
You are in the upstream template (lucidlabs-agent-kit/). This is NOT where development happens. You need to either:
lucidlabs/
├── lucidlabs-agent-kit/ ← You are here (upstream template)
└── projects/ ← Downstream projects go here
├── customer-portal/
├── internal-dashboard/
└── ...
First, check what projects exist:
# List existing projects
ls -la ../projects 2>/dev/null || echo "No projects directory yet"
Present the options to the user:
Question: "Was möchtest du tun?"
Options:
/init-project [name]../projects/[name]/checkout-project [repo-url]If user wants to create a new project:
customer-portal)./scripts/create-agent-project.sh [project-name]
../projects/[project-name]/Project created at: ../projects/[project-name]/
To continue working:
1. Open a new terminal
2. Run: cd ../projects/[project-name] && claude
Or if using VS Code with Claude extension:
1. Open the project folder in VS Code
2. Start Claude from there
If user wants to open an existing project:
ls ../projects/
To work on [project-name]:
1. Open a new terminal
2. Run: cd ../projects/[project-name] && claude
If user wants to clone a project:
mkdir -p ../projects
git clone [repo-url] ../projects/[project-name]
Project cloned to: ../projects/[project-name]/
To continue working:
1. Open a new terminal
2. Run: cd ../projects/[project-name] && claude
If user wants to work on the template itself:
Du möchtest am Agent-Kit Template selbst arbeiten?
Das ist nur für:
- Neue Skills hinzufügen
- Boilerplate verbessern
- Dokumentation aktualisieren
Domain-spezifische Arbeit gehört in downstream Projekte.
/prime to load template contextClaude sessions are directory-bound. A session started in lucidlabs-agent-kit/ works on the template. To work on a project, the user must start a new Claude session in that project's directory.
After determining what the user wants, provide clear instructions:
## Nächste Schritte
**Projekt:** [project-name]
**Pfad:** ../projects/[project-name]/
### Für neues Terminal:
\`\`\`bash
cd ../projects/[project-name] && claude
\`\`\`
### Für VS Code:
1. Öffne den Ordner `../projects/[project-name]/` in VS Code
2. Starte Claude über die Command Palette
---
Sobald du im Projekt bist, nutze `/prime` um den Kontext zu laden.