kiro-project-setuplisted
Install: claude install-skill timwukp/agent-skills-best-practice
# Kiro Project Setup Skill
Sets up a complete Kiro project structure so your AI assistant understands your project conventions, has access to custom skills, and respects your configuration preferences.
## Instructions
When triggered, perform the following steps:
1. **Create the `.kiro/steering/` directory** with a `conventions.md` file containing:
- Project naming conventions (file naming, variable naming)
- Code style preferences (formatting, linting rules)
- Architecture patterns used in the project
- Any team-specific rules the user provides
2. **Create the `.kiro/skills/` directory** for project-level skills:
- Add a placeholder `SKILL.md` explaining that project-specific skills live here
- These skills are scoped to the repository and not shared globally
3. **Add `.gitignore` entries** for `.kiro/` temp files if needed:
- If your AI tools create cache or temp files, consider adding entries like `.kiro/cache/` or `.kiro/tmp/` to `.gitignore`
- Keep `.kiro/steering/` and `.kiro/skills/` tracked in version control
4. **Create a README section** (or suggest additions) covering:
- How the project uses Kiro steering files
- Where to find and add project-level skills
- How new team members can customize their setup
Ask the user about their project before generating files. Gather:
- Programming language(s) used
- Preferred code style (tabs vs spaces, naming conventions)
- Any existing linting or formatting tools
- Team size and collaborat