一键导入
ai-agentic-workflow
Defines the analyse-plan-execute workflow that the agent must follow for non-trivial tasks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Defines the analyse-plan-execute workflow that the agent must follow for non-trivial tasks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Defines a strict code review process where the agent validates quality through linting, tests, complexity analysis, and critical challenge of design decisions.
Guides the agent through creating a new AI skill following the agentskills.io format and this repository's conventions.
Guides the agent to always write commit messages following the Conventional Commits 1.0.0 specification, ensuring structured, parseable, and semantically meaningful commit history.
Guides the agent through applying Domain-Driven Design principles when modeling, structuring, and implementing business logic.
Guides the agent through applying Hexagonal Architecture (Ports & Adapters) to isolate domain logic from external concerns within a service.
Guides the agent to apply consistent, meaningful naming conventions across all code — variables, functions, classes, files, and infrastructure — ensuring readability and predictability.
| name | ai-agentic-workflow |
| description | Defines the analyse-plan-execute workflow that the agent must follow for non-trivial tasks. |
Follow a structured three-phase workflow — analyse, plan, execute — for every non-trivial task to ensure accurate, well-reasoned outcomes.
Use this skill when:
Do not use this workflow for trivial requests (e.g., "rename this variable", "fix this typo") — act directly instead.
Understand the problem completely before proposing any solution.
Design the solution before writing any code.
Implement the plan step by step.
| Task complexity | Analyse | Plan | Execute |
|---|---|---|---|
| Trivial (single obvious action) | Skip | Skip | Act directly |
| Small (2–5 steps, clear path) | Brief mental model | Inline checklist | Execute immediately |
| Medium (multiple files, some ambiguity) | Thorough context gathering | Explicit numbered plan | Step-by-step with validation |
| Large (cross-cutting, architectural) | Deep exploration, ask if unclear | Detailed plan, wait for confirmation | Incremental with checkpoints |