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


