creating-kiro-agents
Use when building custom Kiro AI agents or when user asks for agent configurations - provides JSON structure, tool configuration, prompt patterns, and security best practices for specialized development assistants
npx skills add majiayu000/claude-skill-registry --skill creating-kiro-agents --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Creating Kiro Agents Expert guidance for creating specialized Kiro AI agents with proper configuration, tools, and security. ## When to Use **Use when:** - User asks to create a Kiro agent - Need specialized AI assistant for specific workflow - Building domain-focused development tools - Configuring agent tools and permissions **Don't use for:** - Generic AI prompts (not Kiro-specific) - Project documentation (use steering files instead) - One-off assistant interactions ## Quick Reference ### Minimal Agent Structure ```json { "name": "agent-name", "description": "One-line purpose", "prompt": "System instructions", "tools": ["fs_read", "fs_write"] } ``` ### File Location - **Project**: `.kiro/agents/<name>.json` - **Global**: `~/.kiro/agents/<name>.json` ### Common Tools - `fs_read` - Read files - `fs_write` - Write files (requires `allowedPaths`) - `execute_bash` - Run commands (requires `allowedCommands`) - MCP server tools (varies by server) ## Core Principles ### 1. Specialization Over Generalization ✅ **Good**: `backend-api-specialist` - Express.js REST APIs ❌ **Bad**: `general-helper` - does everything ### 2. Least Privilege Grant only necessary tools and paths. ```json { "t
- When to Use
- Quick Reference
- Minimal Agent Structure
- File Location
- Common Tools
- Core Principles
- 1. Specialization Over Generalization
- 2. Least Privilege
- 3. Clear, Structured Prompts
- Common Patterns
- Backend Specialist
- Code Reviewer
- Test Writer
- Frontend Specialist
touch .kiro/agents/my-agent.json touch ~/.kiro/agents/my-agent.json kiro agent use my-agent kiro "What can you help me with?" Install Kiro agent from registry prpm install @username/agent-name --as kiro --subtype agent Publish your agent prpm init my-agent --subtype agent Edit canonical format, then: prpm publish
What does the creating-kiro-agents skill do?
Use when building custom Kiro AI agents or when user asks for agent configurations - provides JSON structure, tool configuration, prompt patterns, and security best practices for specialized development assistants
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill creating-kiro-agents --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
