Agent Skills
› agentic-in/inferoa
› coding-workflow
coding-workflow
GitHub提供默认编码工作流,强调以仓库文件为真相源。流程涵盖检查、规划、编辑、测试及证据记录。要求维护覆盖率清单,同步状态,使用任务账本和结构化补丁,并通过命令运行验证,确保上下文压缩后能继续工作。
Trigger Scenarios
需要执行非平凡代码修改时
涉及多步骤的代码重构或功能开发时
需要系统性审查和验证代码变更时
Install
npx skills add agentic-in/inferoa --skill coding-workflow -g -y
SKILL.md
Frontmatter
{
"name": "coding-workflow",
"description": "Default Inferoa coding workflow: inspect, plan, edit, test, record evidence, and preserve context."
}
Coding Workflow
Use repository files and docs as the source of truth. For non-trivial work:
- Inspect the relevant files before editing.
- Use
file_search,read_file, and code-intelligence tools where supported. - Maintain the loop coverage inventory: mapping a repo or listing files is not
covered; each relevant surface must be covered with evidence or explicitly rejected with rationale/residual risk. - Keep frontier, coverage, evidence, and residual-risk state synchronized before closing a loop task.
- Keep a task ledger with
todo_writeand evidence withcomplete_step. - Prefer
apply_patchor structured edits for source changes. - Run targeted validation through
run_command. - Store bulky outputs as resources and read only bounded pages.
- Continue after context compression using the summary plus recent tail.
Version History
- 1fd9ec4 Current 2026-07-05 12:04


