Agent skill · Security

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

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Path: skills/agent/creating-kiro-agents/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. When to Use
  2. Quick Reference
  3. Minimal Agent Structure
  4. File Location
  5. Common Tools
  6. Core Principles
  7. 1. Specialization Over Generalization
  8. 2. Least Privilege
  9. 3. Clear, Structured Prompts
  10. Common Patterns
  11. Backend Specialist
  12. Code Reviewer
  13. Test Writer
  14. Frontend Specialist
Ships with 1 file
  • metadata.json
Commands it runs
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
More from claude-skill-registry
All skills →
About this skill
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.

Keep going