Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问clear审计通过

task-breakdown任务分解

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

861

周安装

37

GitHub Stars

636

下载量

302
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/jasonkneen/kiro --skill task-breakdown

简介

task-breakdown 用于辅助安全审计、权限检查和凭据风险分析。

  • 适用于敏感配置梳理和鉴权逻辑审查场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用。
  • 不能将工具输出直接当作最终结论,需人工复核。
  • 涉及密钥或生产系统时应确认最小权限。task-breakdown 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Task Breakdown

Transform designs into actionable implementation plans. This skill teaches how to create well-structured task lists that enable efficient, systematic development.

When to Use This Skill

Use task breakdown when:

  • Design phase is complete and approved
  • Ready to begin implementation
  • Need to coordinate work across developers
  • Want to track incremental progress
  • Planning sprints or work assignments

Task Structure

Two-Level Hierarchy

- [ ] 1. [Epic/Major Component]
- [ ] 1.1 [Specific implementation task]
  - [Implementation details]
  - [Files/components to create]
  - _Requirements: [Requirement references]_
- [ ] 1.2 [Next specific task]
  - [Details]
  - _Requirements: [References]_

- [ ] 2. [Next Epic/Major Component]
- [ ] 2.1 [Specific task]

Task Specification Elements

Each task should include:

  1. Clear Objective: What specific code to write/modify
  2. Implementation Details: Files, components, functions
  3. Requirements Reference: Which requirements this implements
  4. Completion Criteria: How to know the task is done

Step-by-Step Process

Step 1: Analyze Design Components

Identify all implementation needs:

  • Data models and validation
  • Services and business logic
  • API endpoints and handlers
  • UI components
  • Tests for each layer
  • Integration points

Step 2: Identify Dependencies

Map what needs to be built first:

  • Technical: Code dependencies (models before services)
  • Logical: Feature dependencies (login before profile)
  • Data: What data must exist first

Step 3: Sequence Tasks

Order tasks to:

  • Respect dependencies
  • Enable early validation
  • Allow incremental testing
  • Minimize blocking between tasks

Step 4: Write Task Descriptions

For each task, specify:

- [ ] X.Y [Task Title]
  - [What to implement]
  - [Files to create/modify]
  - [Key functionality]
  - [Tests to write]
  - _Requirements: [Req-1, Req-2]_

Sequencing Strategies

Strategy 1: Foundation-First

Build core infrastructure before features.

1. Project setup and core interfaces
2. Data models and validation
3. Data access layer
4. Business logic services
5. API endpoints
6. Integration and wiring

Best for: New projects, complex systems

Strategy 2: Feature-Slice (Vertical)

Build complete features end-to-end.

1. User registration (complete flow)
2. User authentication (complete flow)
3. User profile management (complete flow)
4. Advanced features

Best for: MVP development, early validation

Strategy 3: Risk-First

Tackle uncertain areas early.

1. Most complex/uncertain components
2. External integrations
3. Core business logic
4. User interface
5. Polish and optimization

Best for: High uncertainty, proof-of-concepts

Strategy 4: Hybrid (Recommended)

Combine approaches pragmatically.

1. Minimal foundation (core interfaces)
2. High-risk/high-value feature slice
3. Expand foundation as needed
4. Additional feature slices
5. Integration and polish

Task Categories

Foundation Tasks

- [ ] 1. Set up project foundation
- [ ] 1.1 Create project structure and interfaces
  - Set up directory structure
  - Define TypeScript interfaces for core types
  - Configure testing framework
  - _Requirements: 1.1_

Data Layer Tasks

- [ ] 2. Implement data layer
- [ ] 2.1 Create core data models
  - Implement User model with validation
  - Add database migrations
  - Write unit tests for validation
  - _Requirements: 2.1, 2.2_

Business Logic Tasks

- [ ] 3. Implement business logic
- [ ] 3.1 Create authentication service
  - Implement registration logic
  - Add password hashing
  - Create session management
  - Write unit tests
  - _Requirements: 1.2, 4.1_

API Tasks

- [ ] 4. Implement API layer
- [ ] 4.1 Create user endpoints
  - Implement POST /users endpoint
  - Add request validation
  - Write integration tests
  - _Requirements: 1.2, 2.3_

Integration Tasks

- [ ] 5. Integration and testing
- [ ] 5.1 Wire up components
  - Connect services to API layer
  - Implement middleware
  - Add end-to-end tests
  - _Requirements: 5.1_

Writing Effective Tasks

Good Task Example

- [ ] 2.1 Create User model with validation
  - Implement User class with email, password, name fields
  - Add email validation (RFC 5322 format)
  - Add password validation (8+ chars, mixed case, numbers)
  - Write unit tests for valid/invalid scenarios
  - _Requirements: 1.2, 2.1_

Poor Task Example

- [ ] 2.1 Build user stuff
  - Make user things work
  - _Requirements: 1.2_

Task Scope Guidelines

Appropriate: 2-4 hours of focused work

Too Large:

- [ ] 1.1 Implement complete user management system

Too Small:

- [ ] 1.1 Add semicolon to line 42

Just Right:

- [ ] 1.1 Create User model with validation methods

Dependency Management

Types of Dependencies

Technical Dependencies:

- [ ] 1.1 Create database connection ← Foundation
- [ ] 2.1 Create User model ← Depends on 1.1
- [ ] 3.1 Create UserService ← Depends on 2.1

Logical Dependencies:

- [ ] 1.1 User registration ← Must exist first
- [ ] 2.1 User login ← Depends on 1.1
- [ ] 3.1 Password reset ← Depends on 2.1

Handling Circular Dependencies

Problem:

UserService needs AuthService
AuthService needs UserService

Solution - Interface Extraction:

- [ ] 1.1 Create IUserService and IAuthService interfaces
- [ ] 1.2 Implement UserService using IAuthService
- [ ] 1.3 Implement AuthService using IUserService
- [ ] 1.4 Wire up dependency injection

Complete Example

# Implementation Plan: User Authentication

- [ ] 1. Set up authentication foundation
- [ ] 1.1 Create project structure and interfaces
  - Set up directory structure for auth, models, API
  - Define TypeScript interfaces for User, Session, AuthRequest
  - Configure Jest for testing
  - _Requirements: 1.1_

- [ ] 1.2 Set up database and migrations
  - Configure database connection
  - Create user and session tables
  - Set up test database
  - _Requirements: 1.1, 2.1_

- [ ] 2. Implement core data models
- [ ] 2.1 Create User model with validation
  - Implement User class with email, password, profile fields
  - Add email format validation
  - Add password strength validation (8+ chars)
  - Write unit tests for all validation rules
  - _Requirements: 1.2, 2.1_

- [ ] 2.2 Create Session model
  - Implement Session class with token, expiration
  - Add session validation logic
  - Write unit tests for session management
  - _Requirements: 1.2, 4.1_

- [ ] 3. Create authentication services
- [ ] 3.1 Implement registration service
  - Create UserService with register method
  - Add password hashing with bcrypt
  - Implement duplicate email checking
  - Write unit tests for registration
  - _Requirements: 1.2_

- [ ] 3.2 Implement login service
  - Add login method with password verification
  - Implement JWT token generation
  - Create refresh token rotation
  - Write unit tests for login flow
  - _Requirements: 1.2, 4.1_

- [ ] 4. Create API endpoints
- [ ] 4.1 Implement registration endpoint
  - Create POST /auth/register endpoint
  - Add request validation middleware
  - Implement error responses
  - Write integration tests
  - _Requirements: 1.2, 2.3_

- [ ] 4.2 Implement login endpoint
  - Create POST /auth/login endpoint
  - Add authentication middleware
  - Implement logout functionality
  - Write integration tests
  - _Requirements: 1.2, 4.1_

- [ ] 5. Integration and security
- [ ] 5.1 Add security middleware
  - Implement rate limiting
  - Add CORS configuration
  - Create JWT validation middleware
  - Write security tests
  - _Requirements: 4.1, 2.3_

- [ ] 5.2 End-to-end testing
  - Create complete auth flow tests
  - Test error scenarios
  - Validate security measures
  - _Requirements: 1.2, 4.1_

Quality Checklist

Before finalizing tasks:

Completeness:

  • All design components have tasks
  • All requirements are addressed
  • Testing tasks included throughout
  • Integration tasks connect components

Clarity:

  • Each task has specific objective
  • Files/components specified
  • Requirements referenced
  • Completion criteria clear

Sequencing:

  • Dependencies respected
  • Foundation before features
  • Core before optional
  • Integration after components

Feasibility:

  • Tasks are 2-4 hours each
  • Can be completed independently
  • No external blockers
  • Complexity increases gradually

Common Pitfalls

  1. Tasks too abstract: "Implement user management" vs specific actions
  2. Missing dependencies: Tasks that can't be completed in sequence
  3. Non-coding tasks: Include only implementation activities
  4. Monolithic tasks: Break into 2-4 hour increments
  5. Missing tests: Include testing in each task

Task Execution Tips

Before starting a task:

  1. Read task details thoroughly
  2. Review referenced requirements
  3. Check dependencies are complete
  4. Plan implementation approach

During implementation:

  1. Mark task as in-progress
  2. Write tests alongside code
  3. Test continuously
  4. Document as you go

Before marking complete:

  1. All tests pass
  2. Requirements validated
  3. Code reviewed
  4. Documentation updated

Next Steps

After completing task breakdown:

  1. Review task list with team
  2. Assign tasks to developers
  3. Begin implementation in sequence
  4. Track progress by marking tasks complete
  5. Update tasks if implementation reveals gaps

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenCode

29.24%
按下载量换算88

windsurf

22.35%
按下载量换算67

Claude Code

18.93%
按下载量换算57

Codex

14.41%
按下载量换算44

Gemini CLI

7.94%
按下载量换算24

Antigravity

3.16%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills