en un clic
init-project
Initialize new project with standard structure
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Initialize new project with standard structure
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle 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 | init-project |
| description | Initialize new project with standard structure |
| argument-hint | [path] |
| disable-model-invocation | true |
Set up a new project with the standard directory structure and configuration files for an AI development workflow.
/init-project [project-path]
Example:
/init-project ~/projects/my-new-project
Creates the following structure in the target directory:
project-name/
├── .claude/
│ ├── plans/ # Implementation plans
│ ├── code-reviews/ # Code review outputs
│ ├── system-reviews/ # System evolution reviews
│ └── PRD.md # Product requirements (if applicable)
│
├── CLAUDE.md # Project-specific configuration
├── README.md # Project overview
├── .gitignore # Standard gitignore
└── [project files]
# [Project Name] - Project Configuration
## Project Overview
[Brief description of what this project does]
## Tech Stack
- [Primary language and version]
- [Frameworks and major libraries]
- [Database/storage solution]
## Current Focus
[What we're working on right now]
## Key Files
- `[path]` - [Description]
- `[path]` - [Description]
## Development Commands
\`\`\`bash
# Start development server
[command]
# Run tests
[command]
# Build for production
[command]
\`\`\`
## Reference Documentation
**Read when working on:**
- [Topic]: `[path to relevant reference doc, if any]`
## Validation Commands
### Syntax & Style
\`\`\`bash
[linting command]
\`\`\`
### Unit Tests
\`\`\`bash
[test command]
\`\`\`
### Integration Tests
\`\`\`bash
[integration test command]
\`\`\`
## Code Conventions
- [Convention 1]
- [Convention 2]
- [Convention 3]
# [Project Name]
[Brief project description]
## Status
**Status:** Active | Paused | Archived
**Type:** Application | Internal Tool | Experiment
**Started:** YYYY-MM-DD
## Quick Start
\`\`\`bash
# Installation
[install commands]
# Development
[dev commands]
# Testing
[test commands]
\`\`\`
## Documentation
- [Architecture Documentation](docs/architecture.md)
- [API Documentation](docs/api.md)
- [Deployment Guide](docs/deployment.md)
## Development
See [CLAUDE.md](CLAUDE.md) for AI development workflow context.
## License
[License information]
Based on detected tech stack or user input:
Python:
__pycache__/
*.py[cod]
*$py.class
.venv/
venv/
*.egg-info/
dist/
build/
.pytest_cache/
.coverage
htmlcov/
Node.js:
node_modules/
npm-debug.log*
yarn-error.log*
dist/
build/
.env
.env.local
coverage/
General:
.DS_Store
Thumbs.db
*.swp
*.swo
.idea/
.vscode/
.claude/settings.local.json
Gather Information
Create Directory Structure
.claude/ subdirectoriesGenerate Configuration Files
Initialize Git (if not already a repo)
git init
git add .
git commit -m "chore: initialize project structure"
Confirmation
Ask the user:
After initialization, provide:
Project initialized successfully
Location: [full path]
Type: [project type]
Tech Stack: [stack]
Created:
- .claude/ (plans, code-reviews, system-reviews)
- CLAUDE.md (project configuration)
- README.md (project overview)
- .gitignore (tech stack specific)
Next steps:
1. Review and customize CLAUDE.md
2. Create PRD if needed: /create-prd .claude/PRD.md
3. Start development!
To prime the AI agent on this project:
/prime