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

agile-refinement敏捷细化

Agent Skill

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

总安装

250

周安装

10

GitHub Stars

公开资料未说明

下载量

81
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/djalmajr/essential-skills --skill agile-refinement

简介

agile-refinement 用于校验规划工件质量,支持计划评审和代码审查两种模式。

  • 可分析文件路径、分支或指定审查类型,自动识别当前任务重点。
  • 输出报告语言与用户一致,语法准确且适配特殊字符要求。
  • 初始上下文通过参数传入,空值时将主动询问用户审查目标。
  • 建议在安装前确认是否会触发文件读取或命令执行操作。

SKILL.md

Refinement

Use this skill to validate planning artifacts and review code quality. It operates in two modes: planning lint and code review.

Initial context received via slash: $ARGUMENTS

If $ARGUMENTS is filled (e.g., file path, branch, "planning", "code"), use as starting point to determine mode. If empty, ask the user what they want to validate: planning artifacts or code changes.

Language

Write any report output in the user's language. Apply correct grammar and any required diacritics or script-specific characters. If the user's language is unclear, ask before generating output.

Objective

  • Validate planning artifacts for consistency, completeness, and correctness
  • Review code changes for security, coherence, scope, and quality
  • Catch issues before they become problems in execution
  • Provide actionable, specific feedback — not generic observations

When to use

  • Before starting implementation — lint the planning artifacts
  • Before committing code — review the diff
  • When opening a pull request — quality gate
  • When reviewing AI-generated code — human-equivalent review
  • Periodically — check for stale content, broken cross-references, or orphaned artifacts
  • When merging or completing an epic — validate all pieces fit together

When NOT to use

  • Creating planning artifacts — use /agile-intake, /agile-epic, /agile-story, /agile-roadmap
  • Decomposing work into stories — use /agile-epic (which now handles decomposition)
  • Tracking delivery progress — use /agile-status
  • Planning a sprint — use /agile-sprint

Mode 1: Planning Lint

Validates planning artifacts against the following checks:

Cross-references

  • Origin fields point to existing files
  • Referenced epics, stories, and tasks exist
  • File paths in cross-references are correct and files are present

Dependencies

  • Declared dependencies between stories/tasks exist
  • No circular dependencies
  • Dependency order is consistent with the roadmap/epic sequence

Completeness

  • Required sections are present (Context, Files, Detail, Tasks, Verification)
  • No empty required fields
  • Acceptance criteria are defined and verifiable
  • Tasks are specific and actionable (not vague)

Consistency

  • Sizing is consistent across related artifacts (stories within an epic)
  • Status fields are up to date
  • Naming conventions match across files

Format

  • File naming follows convention (00-overview.md, NN-story-name.md)
  • Folder structure follows convention (planning/<initiative>/epics/NN-<epic>/)
  • Templates are properly filled (no leftover placeholder text)

Scope conflicts

  • No overlapping scope between stories in the same epic
  • Out-of-scope items are not referenced as tasks

Stale content

  • No artifacts with all tasks completed but status still "in progress"
  • No referenced files that have been deleted or moved
  • No plans older than 30 days with incomplete tasks and no recent daily

Process

  1. Identify the scope: a single file, an epic folder, or the entire planning/ tree.
  2. Read all artifacts in scope.
  3. Run each check category above.
  4. Produce an inline report grouped by category with specific issues and locations.

Mode 2: Code Review

Reviews changed code applying the checklist from ~/.agents/rules/code-review.md:

Security

  • Inputs validated and sanitized
  • No SQL injection, XSS, command injection, or SSRF
  • No hardcoded secrets
  • Authentication and authorization correct when applicable
  • Sensitive data not exposed in logs or responses

Project Coherence

  • Follows repository patterns and conventions
  • Uses existing components, utilities, and helpers
  • Did not reinvent the wheel
  • Naming consistent with codebase
  • Imports follow project conventions

Over-engineering

  • No premature abstractions
  • No error handling for impossible scenarios
  • No generalization for hypothetical requirements

Scope

  • Code does only what was requested
  • No refactoring of unrelated code
  • No additional features not requested

Quality

  • Tests cover acceptance scenarios
  • Code readable without explanatory comments
  • Small functions with single responsibility
  • No logic duplication
  • Errors handled at system boundaries

Completeness

  • Lint passes
  • Typecheck passes
  • Tests pass
  • Diff read in full

Process

  1. Identify the scope: branch, files, or working tree changes.
  2. Read the complete diff before issuing any output.
  3. Apply each check category.
  4. Produce an inline report grouped by category.
  5. Highlight red flags that justify immediate rejection.

Output

This skill does NOT produce a saved artifact. It produces an inline report with:

  • Issues grouped by category
  • Severity: red flag (reject), warning (fix before proceeding), info (consider)
  • Specific file and line references where applicable
  • Actionable suggestions for each issue

Rules

  • Read everything in scope before producing any output.
  • Be specific. "Code looks bad" is not actionable. "Replace RateLimitError with HttpError on line 42 of src/middleware/rate-limit.ts" is.
  • AI code review does not replace human code review. This is an additional gate.
  • Planning lint can be run at any time — it's a health check, not a ceremony.
  • Never produce vague, generic feedback. Every issue must be verifiable.

Relationship with the flow

flowchart LR
    A["/agile-epic"] --> B["/agile-refinement<br>(planning lint)"]
    C["/agile-story"] --> D[execution]
    D --> E["/agile-refinement<br>(code review)"]
    E --> F["/agile-status"]

This skill validates artifacts and code at any point in the flow. For creating planning artifacts, use /agile-epic or /agile-story. For tracking delivery, use /agile-status.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.84%
按下载量换算29

Claude

31.05%
按下载量换算25

Cursor

19.83%
按下载量换算16

Gemini CLI

10.31%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills