Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计异常

kiro-integration基罗整合

Agent Skill

kiro-integration 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

225

周安装

9

GitHub Stars

61

下载量

73
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:kiro-integration(基罗整合)
来源仓库:https://github.com/melodic-software/claude-code-plugins
仓库路径:skills/kiro-integration
安装命令:
npx skills add https://github.com/melodic-software/claude-code-plugins --skill kiro-integration
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/melodic-software/claude-code-plugins --skill kiro-integration

简介

kiro-integration 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Kiro Integration

AWS Kiro specification patterns, file structure, and synchronization with canonical model.

When to Use This Skill

Keywords: Kiro, AWS Kiro, requirements.md, design.md, tasks.md, steering files, Kiro IDE, Kiro agent, Kiro sync, spec generation, agentic development, Kiro hooks

Use this skill when:

  • Working with AWS Kiro IDE or Kiro-compatible tools
  • Syncing between Kiro format and canonical specifications
  • Creating or updating Kiro specification files
  • Configuring steering files for agent context
  • Integrating Kiro with existing spec-driven workflows
  • Converting between Kiro and other specification formats

Kiro Overview

Kiro is an agentic IDE developed by AWS that uses specification-driven development. It generates three interconnected files:

.kiro/
├── specs/
│   ├── requirements.md    # EARS-formatted requirements
│   ├── design.md          # Technical implementation design
│   └── tasks.md           # Executable task breakdown
└── steering/
    └── context.md         # Agent steering context

Key Concepts

Specification Files

FilePurposeFormat
requirements.mdRequirements using EARS patternsEARS syntax in markdown
design.mdTechnical design and architectureMarkdown with diagrams
tasks.mdExecutable task checklistMarkdown checkboxes

EARS Integration

Kiro uses EARS (Easy Approach to Requirements Syntax) for requirements. All six patterns are supported:

  • Ubiquitous: The system SHALL...
  • State-Driven: WHILE <condition>, the system SHALL...
  • Event-Driven: WHEN <trigger>, the system SHALL...
  • Unwanted: IF <condition>, THEN the system SHALL...
  • Optional: WHERE <feature>, the system SHALL...
  • Complex: Combinations of the above

Steering Files

Steering files provide context to the Kiro agent:

  • Project-specific knowledge
  • Codebase conventions
  • Domain terminology
  • Architectural constraints

Kiro File Structure

requirements.md

# Requirements: <Feature Name>

## Context

<Problem statement and background>

## Functional Requirements

### FR-1: <Requirement Title>

**Pattern:** Event-Driven
**Priority:** Must

WHEN the user submits a form, the system SHALL validate all required fields.

#### Acceptance Criteria

- [ ] AC-1.1: Given valid input, when submitted, then success message shown
- [ ] AC-1.2: Given invalid input, when submitted, then errors highlighted

### FR-2: ...

## Non-Functional Requirements

### NFR-1: Performance

The system SHALL respond within 200ms for all API requests.

design.md

# Design: <Feature Name>

## Overview

<High-level design approach>

## Architecture

### Component Diagram

<Mermaid or text diagram>

### Components

| Component | Responsibility |
| --- | --- |
| FormValidator | Input validation logic |
| FormHandler | Form submission handling |

## Data Model

### Entities

- **FormSubmission**: Captures form data
  - id: UUID
  - data: JSON
  - status: enum

## API Design

### Endpoints

| Method | Path | Description |
| --- | --- | --- |
| POST | /api/forms | Submit form |

## Technical Decisions

### Approach Selected

<Chosen approach with rationale>

### Alternatives Considered

| Alternative | Pros | Cons | Why Not |
| --- | --- | --- | --- |
| ... | ... | ... | ... |

tasks.md

# Tasks: <Feature Name>

## Task List

### Phase 1: Setup

- [ ] **TSK-001**: Create FormValidator component
  - Requirement: FR-1
  - Deliverables: `src/validators/FormValidator.ts`
  - Acceptance: Unit tests pass

- [ ] **TSK-002**: Create FormHandler service
  - Requirement: FR-1, FR-2
  - Deliverables: `src/services/FormHandler.ts`
  - Acceptance: Integration tests pass

### Phase 2: Integration

- [ ] **TSK-003**: Wire up API endpoint
  - Requirement: FR-1
  - Deliverables: `src/routes/forms.ts`
  - Acceptance: E2E tests pass

## Dependency Graph

TSK-001 ─┬─> TSK-003 TSK-002 ─┘


## Progress

| Status | Count |
| --- | --- |
| Pending | 3 |
| In Progress | 0 |
| Complete | 0 |

Sync with Canonical Model

Kiro to Canonical

Kiro FieldCanonical Field
requirements.md FR-xrequirements[].id
EARS textrequirements[].text
Priorityrequirements[].priority
AC-x.yrequirements[].acceptance_criteria[]
design.mdimplementation_notes
tasks.md TSK-xmaps to task schema

Canonical to Kiro

When converting from canonical format to Kiro:

  1. Split canonical spec into three files
  2. Format requirements using EARS syntax
  3. Generate design.md from implementation notes
  4. Create tasks.md from task breakdown

Steering File Configuration

context.md Structure

# Project Context

## Overview

<Project description and purpose>

## Technology Stack

- Language: TypeScript
- Framework: Next.js
- Database: PostgreSQL

## Conventions

### Naming

- Use camelCase for variables
- Use PascalCase for components
- Use kebab-case for files

### Architecture

- Follow vertical slice architecture
- Use feature-based folder structure
- Apply CQRS for complex operations

## Domain Glossary

| Term | Definition |
| --- | --- |
| Form | User input collection |
| Submission | Completed form data |

## Constraints

- All APIs must be RESTful
- Response time < 200ms
- Test coverage > 80%

Workflows

Generate Kiro Specs from Feature Request

  1. Analyze feature request
  2. Generate requirements.md with EARS patterns
  3. Generate design.md with architecture
  4. Generate tasks.md with breakdown
  5. Create steering context if needed

Sync Kiro to Canonical

  1. Read Kiro spec files
  2. Parse EARS requirements
  3. Extract acceptance criteria
  4. Map to canonical schema
  5. Output canonical YAML/JSON

Sync Canonical to Kiro

  1. Read canonical specification
  2. Split into three Kiro files
  3. Format requirements as EARS
  4. Structure design document
  5. Create task checklist

Quick Commands

ActionCommand
Generate from feature/spec:kiro:sync --from feature
Sync to canonical/spec:kiro:sync --to canonical
Update from canonical/spec:kiro:sync --from canonical
Validate Kiro files/spec:validate.kiro/specs/

Integration with Spec Kit

Kiro files map to Spec Kit phases:

Kiro FileSpec Kit Phase
requirements.mdPhase 1: Specify
design.mdPhase 2: Plan
tasks.mdPhase 3: Tasks

References

Detailed Documentation:

Related Skills:

  • ears-authoring - EARS requirement patterns
  • speckit-workflow - GitHub Spec Kit 5-phase workflow
  • canonical-spec-format - Canonical specification structure

Last Updated: 2025-12-24

Version History

  • v1.0.0 (2025-12-26): Initial release

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.33%
按下载量换算27

Claude

29.79%
按下载量换算22

Cursor

18.94%
按下载量换算14

Gemini CLI

8.3%
按下载量换算6

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills