ワンクリックで
checkout-project
Clone an existing project from GitHub into the projects folder. Use when starting work on an existing downstream project.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Clone an existing project from GitHub into the projects folder. Use when starting work on an existing downstream 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 | checkout-project |
| description | Clone an existing project from GitHub into the projects folder. Use when starting work on an existing downstream project. |
| disable-model-invocation | true |
| allowed-tools | Bash, Read |
| argument-hint | ["repo-url-or-name"] |
Clone an existing downstream project from GitHub into the correct folder structure.
$ARGUMENTS can be:
https://github.com/lucidlabs-hq/customer-portallucidlabs-hq/customer-portalcustomer-portalAfter checkout:
lucidlabs/
├── lucidlabs-agent-kit/ ← You are here
└── projects/
└── [project-name]/ ← Project will be cloned here
# If full URL
REPO_URL="$ARGUMENTS"
# If short form (org/repo)
REPO_URL="git@github.com:$ARGUMENTS.git"
# Derive project name from URL
PROJECT_NAME=$(basename "$REPO_URL" .git)
mkdir -p ../projects
if [ -d "../projects/$PROJECT_NAME" ]; then
echo "Project already exists at ../projects/$PROJECT_NAME"
echo "To update, navigate there and run: git pull"
exit 1
fi
git clone "$REPO_URL" "../projects/$PROJECT_NAME"
ls -la "../projects/$PROJECT_NAME"
After successful clone, provide these instructions:
## Projekt geklont
**Projekt:** [project-name]
**Pfad:** ../projects/[project-name]/
### Nächste Schritte
1. **Neues Terminal öffnen und dort arbeiten:**
\`\`\`bash
cd ../projects/[project-name] && claude
\`\`\`
2. **Dependencies installieren:**
\`\`\`bash
cd frontend && pnpm install
\`\`\`
3. **Kontext laden:**
\`\`\`
/prime
\`\`\`
---
**Hinweis:** Claude Sessions sind verzeichnisgebunden.
Starte eine neue Session im Projektordner, um dort zu arbeiten.
Fehler: Repository nicht gefunden.
Überprüfe:
1. Ist die URL korrekt?
2. Hast du Zugriff auf das Repository?
3. SSH-Key konfiguriert? (für git@github.com URLs)
Versuche:
- Mit HTTPS: git clone https://github.com/org/repo.git
- SSH prüfen: ssh -T git@github.com
Fehler: Zugriff verweigert.
Das Repository existiert, aber du hast keinen Zugriff.
Kontaktiere den Repository-Owner für Zugang.
| Input | Interpreted As |
|---|---|
customer-portal | git@github.com:lucidlabs-hq/customer-portal.git |
lucidlabs-hq/my-project | git@github.com:lucidlabs-hq/my-project.git |
https://github.com/org/repo | https://github.com/org/repo.git |
git@github.com:org/repo.git | Used as-is |