Agent Skills
› agentic-in/inferoa
› coding-workflow
coding-workflow
GitHub提供标准编码工作流:先检查文件,维护覆盖清单与证据,使用补丁编辑代码,运行验证命令并记录状态。适用于非 trivial 的代码修改任务,确保上下文一致性与变更可追溯。
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


