@fitlab-ai/agent-infra 0.6.5 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +51 -25
- package/README.zh-CN.md +49 -23
- package/bin/cli.ts +1 -1
- package/dist/bin/cli.js +1 -1
- package/dist/lib/builtin-tuis.js +45 -0
- package/dist/lib/defaults.json +4 -0
- package/dist/lib/init.js +65 -23
- package/dist/lib/prompt.js +49 -1
- package/dist/lib/sandbox/commands/create.js +4 -2
- package/dist/lib/sandbox/commands/enter.js +15 -4
- package/dist/lib/sandbox/commands/list-running.js +153 -0
- package/dist/lib/sandbox/commands/ls.js +24 -45
- package/dist/lib/sandbox/commands/rebuild.js +7 -13
- package/dist/lib/sandbox/commands/rm.js +2 -0
- package/dist/lib/sandbox/config.js +3 -0
- package/dist/lib/sandbox/image-prune.js +18 -0
- package/dist/lib/sandbox/index.js +2 -1
- package/dist/lib/sandbox/runtimes/ai-tools.dockerfile +10 -6
- package/dist/lib/sandbox/task-resolver.js +18 -0
- package/dist/lib/sandbox/tools.js +213 -8
- package/dist/lib/update.js +70 -18
- package/lib/builtin-tuis.ts +55 -0
- package/lib/defaults.json +4 -0
- package/lib/init.ts +97 -35
- package/lib/prompt.ts +54 -1
- package/lib/sandbox/commands/create.ts +10 -2
- package/lib/sandbox/commands/enter.ts +14 -4
- package/lib/sandbox/commands/list-running.ts +188 -0
- package/lib/sandbox/commands/ls.ts +28 -49
- package/lib/sandbox/commands/rebuild.ts +12 -14
- package/lib/sandbox/commands/rm.ts +3 -0
- package/lib/sandbox/config.ts +7 -0
- package/lib/sandbox/image-prune.ts +23 -0
- package/lib/sandbox/index.ts +2 -1
- package/lib/sandbox/runtimes/ai-tools.dockerfile +10 -6
- package/lib/sandbox/task-resolver.ts +23 -1
- package/lib/sandbox/tools.ts +248 -9
- package/lib/update.ts +85 -30
- package/package.json +1 -1
- package/templates/.agents/QUICKSTART.en.md +1 -1
- package/templates/.agents/QUICKSTART.zh-CN.md +1 -1
- package/templates/.agents/README.en.md +111 -2
- package/templates/.agents/README.zh-CN.md +111 -2
- package/templates/.agents/rules/create-issue.en.md +1 -1
- package/templates/.agents/rules/create-issue.github.en.md +1 -1
- package/templates/.agents/rules/create-issue.github.zh-CN.md +1 -1
- package/templates/.agents/rules/create-issue.zh-CN.md +1 -1
- package/templates/.agents/rules/issue-sync.github.en.md +6 -5
- package/templates/.agents/rules/issue-sync.github.zh-CN.md +6 -5
- package/templates/.agents/rules/milestone-inference.github.en.md +2 -2
- package/templates/.agents/rules/milestone-inference.github.zh-CN.md +2 -2
- package/templates/.agents/rules/no-mid-flow-questions.en.md +57 -0
- package/templates/.agents/rules/no-mid-flow-questions.zh-CN.md +57 -0
- package/templates/.agents/rules/pr-sync.github.en.md +4 -5
- package/templates/.agents/rules/pr-sync.github.zh-CN.md +4 -5
- package/templates/.agents/rules/task-management.en.md +9 -6
- package/templates/.agents/rules/task-management.zh-CN.md +9 -6
- package/templates/.agents/rules/task-short-id.en.md +141 -0
- package/templates/.agents/rules/task-short-id.zh-CN.md +124 -0
- package/templates/.agents/rules/testing-discipline.en.md +2 -2
- package/templates/.agents/rules/testing-discipline.zh-CN.md +2 -2
- package/templates/.agents/scripts/task-short-id.js +713 -0
- package/templates/.agents/scripts/validate-artifact.js +1 -1
- package/templates/.agents/skills/analyze-task/SKILL.en.md +20 -4
- package/templates/.agents/skills/analyze-task/SKILL.zh-CN.md +20 -5
- package/templates/.agents/skills/block-task/SKILL.en.md +12 -0
- package/templates/.agents/skills/block-task/SKILL.zh-CN.md +12 -1
- package/templates/.agents/skills/cancel-task/SKILL.en.md +12 -0
- package/templates/.agents/skills/cancel-task/SKILL.zh-CN.md +12 -1
- package/templates/.agents/skills/check-task/SKILL.en.md +47 -32
- package/templates/.agents/skills/check-task/SKILL.zh-CN.md +46 -32
- package/templates/.agents/skills/close-codescan/SKILL.en.md +11 -0
- package/templates/.agents/skills/close-codescan/SKILL.zh-CN.md +11 -0
- package/templates/.agents/skills/close-dependabot/SKILL.en.md +11 -0
- package/templates/.agents/skills/close-dependabot/SKILL.zh-CN.md +11 -0
- package/templates/.agents/skills/code-task/SKILL.en.md +121 -0
- package/templates/.agents/skills/{implement-task → code-task}/SKILL.zh-CN.md +55 -25
- package/templates/.agents/skills/{implement-task → code-task}/config/verify.en.json +4 -4
- package/templates/.agents/skills/{implement-task → code-task}/config/verify.zh-CN.json +4 -4
- package/templates/.agents/skills/{implement-task → code-task}/reference/branch-management.zh-CN.md +2 -2
- package/templates/.agents/skills/{implement-task/reference/implementation-rules.en.md → code-task/reference/code-rules.en.md} +6 -6
- package/templates/.agents/skills/{implement-task/reference/implementation-rules.zh-CN.md → code-task/reference/code-rules.zh-CN.md} +3 -3
- package/templates/.agents/skills/code-task/reference/dual-mode.en.md +69 -0
- package/templates/.agents/skills/code-task/reference/dual-mode.zh-CN.md +69 -0
- package/templates/.agents/skills/{refine-task/reference/fix-workflow.en.md → code-task/reference/fix-mode.en.md} +12 -12
- package/templates/.agents/skills/{refine-task/reference/fix-workflow.zh-CN.md → code-task/reference/fix-mode.zh-CN.md} +8 -8
- package/templates/.agents/skills/code-task/reference/output-template.en.md +20 -0
- package/templates/.agents/skills/code-task/reference/output-template.zh-CN.md +20 -0
- package/templates/.agents/skills/{implement-task → code-task}/reference/report-template.en.md +4 -4
- package/templates/.agents/skills/{implement-task → code-task}/reference/report-template.zh-CN.md +3 -3
- package/templates/.agents/skills/code-task/scripts/detect-mode.js +370 -0
- package/templates/.agents/skills/commit/SKILL.en.md +6 -2
- package/templates/.agents/skills/commit/SKILL.zh-CN.md +6 -2
- package/templates/.agents/skills/commit/reference/task-status-update.en.md +10 -6
- package/templates/.agents/skills/commit/reference/task-status-update.zh-CN.md +10 -6
- package/templates/.agents/skills/complete-task/SKILL.en.md +17 -3
- package/templates/.agents/skills/complete-task/SKILL.zh-CN.md +17 -4
- package/templates/.agents/skills/create-pr/SKILL.en.md +21 -1
- package/templates/.agents/skills/create-pr/SKILL.zh-CN.md +21 -1
- package/templates/.agents/skills/create-task/SKILL.en.md +14 -0
- package/templates/.agents/skills/create-task/SKILL.zh-CN.md +14 -1
- package/templates/.agents/skills/import-codescan/SKILL.en.md +15 -1
- package/templates/.agents/skills/import-codescan/SKILL.zh-CN.md +15 -1
- package/templates/.agents/skills/import-dependabot/SKILL.en.md +16 -2
- package/templates/.agents/skills/import-dependabot/SKILL.zh-CN.md +16 -2
- package/templates/.agents/skills/import-issue/SKILL.en.md +17 -3
- package/templates/.agents/skills/import-issue/SKILL.zh-CN.md +17 -3
- package/templates/.agents/skills/plan-task/SKILL.en.md +8 -4
- package/templates/.agents/skills/plan-task/SKILL.zh-CN.md +8 -5
- package/templates/.agents/skills/restore-task/SKILL.en.md +16 -3
- package/templates/.agents/skills/restore-task/SKILL.zh-CN.md +16 -4
- package/templates/.agents/skills/review-analysis/SKILL.en.md +80 -0
- package/templates/.agents/skills/review-analysis/SKILL.zh-CN.md +105 -0
- package/templates/.agents/skills/review-analysis/config/verify.en.json +51 -0
- package/templates/.agents/skills/review-analysis/config/verify.zh-CN.json +51 -0
- package/templates/.agents/skills/review-analysis/reference/output-templates.en.md +87 -0
- package/templates/.agents/skills/review-analysis/reference/output-templates.zh-CN.md +87 -0
- package/templates/.agents/skills/review-analysis/reference/report-template.en.md +90 -0
- package/templates/.agents/skills/review-analysis/reference/report-template.zh-CN.md +91 -0
- package/templates/.agents/skills/review-analysis/reference/review-criteria.en.md +47 -0
- package/templates/.agents/skills/review-analysis/reference/review-criteria.zh-CN.md +47 -0
- package/templates/.agents/skills/{review-task → review-code}/SKILL.en.md +15 -9
- package/templates/.agents/skills/{review-task → review-code}/SKILL.zh-CN.md +19 -10
- package/templates/.agents/skills/{review-task → review-code}/config/verify.en.json +7 -5
- package/templates/.agents/skills/{review-task → review-code}/config/verify.zh-CN.json +6 -4
- package/templates/.agents/skills/{review-task → review-code}/reference/output-templates.en.md +21 -17
- package/templates/.agents/skills/{review-task → review-code}/reference/output-templates.zh-CN.md +19 -15
- package/templates/.agents/skills/{review-task → review-code}/reference/report-template.en.md +5 -6
- package/templates/.agents/skills/review-code/reference/report-template.zh-CN.md +91 -0
- package/templates/.agents/skills/review-code/reference/review-criteria.en.md +48 -0
- package/templates/.agents/skills/{review-task → review-code}/reference/review-criteria.zh-CN.md +10 -4
- package/templates/.agents/skills/review-plan/SKILL.en.md +80 -0
- package/templates/.agents/skills/review-plan/SKILL.zh-CN.md +105 -0
- package/templates/.agents/skills/{refine-task → review-plan}/config/verify.en.json +14 -10
- package/templates/.agents/skills/{refine-task → review-plan}/config/verify.zh-CN.json +14 -10
- package/templates/.agents/skills/review-plan/reference/output-templates.en.md +87 -0
- package/templates/.agents/skills/review-plan/reference/output-templates.zh-CN.md +87 -0
- package/templates/.agents/skills/review-plan/reference/report-template.en.md +90 -0
- package/templates/.agents/skills/{review-task → review-plan}/reference/report-template.zh-CN.md +3 -3
- package/templates/.agents/skills/review-plan/reference/review-criteria.en.md +47 -0
- package/templates/.agents/skills/review-plan/reference/review-criteria.zh-CN.md +47 -0
- package/templates/.agents/skills/test/SKILL.en.md +2 -2
- package/templates/.agents/skills/test/SKILL.zh-CN.md +13 -31
- package/templates/.agents/skills/update-agent-infra/SKILL.en.md +1 -0
- package/templates/.agents/skills/update-agent-infra/SKILL.zh-CN.md +1 -0
- package/templates/.agents/skills/update-agent-infra/scripts/sync-templates.js +113 -21
- package/templates/.agents/templates/task.en.md +4 -3
- package/templates/.agents/templates/task.zh-CN.md +3 -2
- package/templates/.agents/workflows/bug-fix.en.yaml +126 -80
- package/templates/.agents/workflows/bug-fix.zh-CN.yaml +90 -44
- package/templates/.agents/workflows/feature-development.en.yaml +115 -70
- package/templates/.agents/workflows/feature-development.zh-CN.yaml +92 -47
- package/templates/.agents/workflows/refactoring.en.yaml +123 -78
- package/templates/.agents/workflows/refactoring.zh-CN.yaml +89 -44
- package/templates/.claude/commands/code-task.en.md +8 -0
- package/templates/.claude/commands/code-task.zh-CN.md +8 -0
- package/templates/.claude/commands/review-analysis.en.md +8 -0
- package/templates/.claude/commands/review-analysis.zh-CN.md +8 -0
- package/templates/.claude/commands/review-code.en.md +8 -0
- package/templates/.claude/commands/review-code.zh-CN.md +8 -0
- package/templates/.claude/commands/review-plan.en.md +8 -0
- package/templates/.claude/commands/review-plan.zh-CN.md +8 -0
- package/templates/.gemini/commands/_project_/archive-tasks.zh-CN.toml +1 -1
- package/templates/.gemini/commands/_project_/code-task.en.toml +8 -0
- package/templates/.gemini/commands/_project_/code-task.zh-CN.toml +8 -0
- package/templates/.gemini/commands/_project_/init-labels.zh-CN.toml +1 -1
- package/templates/.gemini/commands/_project_/init-milestones.zh-CN.toml +1 -1
- package/templates/.gemini/commands/_project_/review-analysis.en.toml +8 -0
- package/templates/.gemini/commands/_project_/review-analysis.zh-CN.toml +8 -0
- package/templates/.gemini/commands/_project_/review-code.en.toml +8 -0
- package/templates/.gemini/commands/_project_/review-code.zh-CN.toml +8 -0
- package/templates/.gemini/commands/_project_/review-plan.en.toml +8 -0
- package/templates/.gemini/commands/_project_/review-plan.zh-CN.toml +8 -0
- package/templates/.opencode/commands/code-task.en.md +11 -0
- package/templates/.opencode/commands/code-task.zh-CN.md +11 -0
- package/templates/.opencode/commands/review-analysis.en.md +11 -0
- package/templates/.opencode/commands/review-analysis.zh-CN.md +11 -0
- package/templates/.opencode/commands/review-code.en.md +11 -0
- package/templates/.opencode/commands/review-code.zh-CN.md +11 -0
- package/templates/.opencode/commands/review-plan.en.md +11 -0
- package/templates/.opencode/commands/review-plan.zh-CN.md +11 -0
- package/templates/.agents/skills/implement-task/SKILL.en.md +0 -173
- package/templates/.agents/skills/implement-task/reference/output-template.en.md +0 -20
- package/templates/.agents/skills/implement-task/reference/output-template.zh-CN.md +0 -20
- package/templates/.agents/skills/refine-task/SKILL.en.md +0 -153
- package/templates/.agents/skills/refine-task/SKILL.zh-CN.md +0 -153
- package/templates/.agents/skills/refine-task/reference/report-template.en.md +0 -64
- package/templates/.agents/skills/refine-task/reference/report-template.zh-CN.md +0 -64
- package/templates/.agents/skills/review-task/reference/review-criteria.en.md +0 -42
- package/templates/.claude/commands/implement-task.en.md +0 -8
- package/templates/.claude/commands/implement-task.zh-CN.md +0 -8
- package/templates/.claude/commands/refine-task.en.md +0 -8
- package/templates/.claude/commands/refine-task.zh-CN.md +0 -8
- package/templates/.claude/commands/review-task.en.md +0 -8
- package/templates/.claude/commands/review-task.zh-CN.md +0 -8
- package/templates/.gemini/commands/_project_/implement-task.en.toml +0 -8
- package/templates/.gemini/commands/_project_/implement-task.zh-CN.toml +0 -8
- package/templates/.gemini/commands/_project_/refine-task.en.toml +0 -8
- package/templates/.gemini/commands/_project_/refine-task.zh-CN.toml +0 -8
- package/templates/.gemini/commands/_project_/review-task.en.toml +0 -8
- package/templates/.gemini/commands/_project_/review-task.zh-CN.toml +0 -8
- package/templates/.opencode/commands/implement-task.en.md +0 -11
- package/templates/.opencode/commands/implement-task.zh-CN.md +0 -11
- package/templates/.opencode/commands/refine-task.en.md +0 -11
- package/templates/.opencode/commands/refine-task.zh-CN.md +0 -11
- package/templates/.opencode/commands/review-task.en.md +0 -11
- package/templates/.opencode/commands/review-task.zh-CN.md +0 -11
- /package/templates/.agents/skills/{implement-task → code-task}/reference/branch-management.en.md +0 -0
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
# Refinement Report Template
|
|
2
|
-
|
|
3
|
-
Use this structure when writing `refinement.md` or `refinement-r{N}.md`.
|
|
4
|
-
|
|
5
|
-
## Output Template
|
|
6
|
-
|
|
7
|
-
```markdown
|
|
8
|
-
# Refinement Report
|
|
9
|
-
|
|
10
|
-
- **Refinement Round**: Round {refinement-round}
|
|
11
|
-
- **Artifact File**: `{refinement-artifact}`
|
|
12
|
-
- **Review Input**: `{review-artifact}`
|
|
13
|
-
- **Implementation Context**: `{implementation-artifact}`
|
|
14
|
-
|
|
15
|
-
## State Check
|
|
16
|
-
|
|
17
|
-
> Paste the raw state-check command output; each command starts with `$ `.
|
|
18
|
-
|
|
19
|
-
### Review Feedback Handling
|
|
20
|
-
|
|
21
|
-
#### Blocker Fixes
|
|
22
|
-
1. **{issue-title}**
|
|
23
|
-
- **Fix**: {what changed}
|
|
24
|
-
- **File**: `{file-path}:{line-number}`
|
|
25
|
-
- **Validation**: {validation}
|
|
26
|
-
|
|
27
|
-
#### Major Issue Fixes
|
|
28
|
-
1. **{issue-title}**
|
|
29
|
-
- **Fix**: {what changed}
|
|
30
|
-
- **File**: `{file-path}:{line-number}`
|
|
31
|
-
|
|
32
|
-
#### Minor Issue Handling
|
|
33
|
-
1. **{issue-title}**
|
|
34
|
-
- **Fix**: {what changed}
|
|
35
|
-
|
|
36
|
-
#### Environment-Blocked Handling
|
|
37
|
-
|
|
38
|
-
> These findings are outside AI repair scope and do not count toward repair totals. Preserve them unchanged and identify the maintainer verification path.
|
|
39
|
-
|
|
40
|
-
1. **{issue-title}**
|
|
41
|
-
- **Status**: skipped (outside AI repair scope)
|
|
42
|
-
- **Required Environment**: {e.g. Docker sandbox / macOS host / third-party account}
|
|
43
|
-
- **Maintainer Verification Steps**: {steps}
|
|
44
|
-
|
|
45
|
-
> If this round has no env-blocked findings, keep the subsection heading and write "None".
|
|
46
|
-
|
|
47
|
-
#### Unresolved Issues
|
|
48
|
-
- {issue}: {reason}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
## Evidence
|
|
52
|
-
|
|
53
|
-
> Pair each "I verified X" claim with the corresponding raw tool output; the gate only checks that this section exists and at least one `$ ` line is present.
|
|
54
|
-
|
|
55
|
-
- Claim: {verified claim}
|
|
56
|
-
```text
|
|
57
|
-
$ {command}
|
|
58
|
-
{raw output}
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
### Test Results After Refinement
|
|
62
|
-
- All tests passing: {yes/no}
|
|
63
|
-
- Test output: {summary}
|
|
64
|
-
```
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
# 修复报告模板
|
|
2
|
-
|
|
3
|
-
编写 `refinement.md` 或 `refinement-r{N}.md` 时,使用以下结构。
|
|
4
|
-
|
|
5
|
-
## 输出模板
|
|
6
|
-
|
|
7
|
-
```markdown
|
|
8
|
-
# 修复报告
|
|
9
|
-
|
|
10
|
-
- **修复轮次**: Round {refinement-round}
|
|
11
|
-
- **产物文件**: `{refinement-artifact}`
|
|
12
|
-
- **审查输入**: `{review-artifact}`
|
|
13
|
-
- **实现上下文**: `{implementation-artifact}`
|
|
14
|
-
|
|
15
|
-
## 状态核对
|
|
16
|
-
|
|
17
|
-
> 粘贴状态核对命令原文;每条命令以 `$ ` 开头。
|
|
18
|
-
|
|
19
|
-
### 审查反馈处理
|
|
20
|
-
|
|
21
|
-
#### 阻塞项修复
|
|
22
|
-
1. **{issue-title}**
|
|
23
|
-
- **修复**: {what changed}
|
|
24
|
-
- **文件**: `{file-path}:{line-number}`
|
|
25
|
-
- **验证**: {validation}
|
|
26
|
-
|
|
27
|
-
#### 主要问题修复
|
|
28
|
-
1. **{issue-title}**
|
|
29
|
-
- **修复**: {what changed}
|
|
30
|
-
- **文件**: `{file-path}:{line-number}`
|
|
31
|
-
|
|
32
|
-
#### 次要问题处理
|
|
33
|
-
1. **{issue-title}**
|
|
34
|
-
- **修复**: {what changed}
|
|
35
|
-
|
|
36
|
-
#### 环境性遗留处理
|
|
37
|
-
|
|
38
|
-
> 这些项不在 AI 修复范围;不计入修复总数。仅原样保留并指明维护者后续验证路径。
|
|
39
|
-
|
|
40
|
-
1. **{issue-title}**
|
|
41
|
-
- **状态**:跳过(不在 AI 修复范围)
|
|
42
|
-
- **所需环境**:{e.g. Docker 沙箱 / macOS host / 第三方账号}
|
|
43
|
-
- **维护者验证步骤**:{steps}
|
|
44
|
-
|
|
45
|
-
> 如本轮无 env-blocked 项,保留小节标题并写「(无)」。
|
|
46
|
-
|
|
47
|
-
#### 未解决问题
|
|
48
|
-
- {issue}: {reason}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
## 证据原文
|
|
52
|
-
|
|
53
|
-
> 每条“我验证了 X”断言都要配对对应 tool output 原文;gate 仅校验本段存在和至少一行 `$ `。
|
|
54
|
-
|
|
55
|
-
- 断言:{verified claim}
|
|
56
|
-
```text
|
|
57
|
-
$ {command}
|
|
58
|
-
{raw output}
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
### 修复后的测试结果
|
|
62
|
-
- 所有测试通过: {yes/no}
|
|
63
|
-
- 测试输出: {summary}
|
|
64
|
-
```
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
# Review Criteria
|
|
2
|
-
|
|
3
|
-
Read this file before reviewing code or classifying findings.
|
|
4
|
-
|
|
5
|
-
## Perform Code Review
|
|
6
|
-
|
|
7
|
-
Follow the `code-review` step in `.agents/workflows/feature-development.yaml`.
|
|
8
|
-
|
|
9
|
-
**Required review areas**:
|
|
10
|
-
- [ ] code quality and coding standards
|
|
11
|
-
- [ ] bug and risk detection
|
|
12
|
-
- [ ] test coverage and test quality
|
|
13
|
-
- [ ] error handling and edge cases
|
|
14
|
-
- [ ] performance and security concerns
|
|
15
|
-
- [ ] code comments and documentation
|
|
16
|
-
- [ ] alignment with the technical plan
|
|
17
|
-
|
|
18
|
-
**Review principles**:
|
|
19
|
-
1. **Strict but fair**: point out problems and also acknowledge good work
|
|
20
|
-
2. **Specific**: cite exact file paths and line numbers
|
|
21
|
-
3. **Actionable**: suggest a concrete fix
|
|
22
|
-
4. **Severity-based**: distinguish blockers, major issues, and minor improvements
|
|
23
|
-
|
|
24
|
-
## Environment-Blocked Classification
|
|
25
|
-
|
|
26
|
-
Some findings cannot be closed by the AI agent in the current execution environment, for example:
|
|
27
|
-
|
|
28
|
-
- missing Docker / sandbox access for end-to-end verification
|
|
29
|
-
- missing a specific OS (macOS-only behavior)
|
|
30
|
-
- missing a third-party account / OAuth access
|
|
31
|
-
- missing privileged operations (root, sudo, special network access)
|
|
32
|
-
|
|
33
|
-
**Classification decision tree**: "Can the AI agent close this without changing the environment?"
|
|
34
|
-
- yes -> one of blocker / major / minor (based on risk)
|
|
35
|
-
- no -> **env-blocked** (a meta-category, not part of severity ordering)
|
|
36
|
-
|
|
37
|
-
Where env-blocked findings go:
|
|
38
|
-
- record them in the independent review report section "Environment-Blocked Findings"
|
|
39
|
-
- append them to the end of numeric summaries (for example, `(+ 1 env-blocked)`)
|
|
40
|
-
- do **not** send them into the refine loop; maintainers carry them in the PR description as a "manual verification required" checklist
|
|
41
|
-
|
|
42
|
-
Also inspect `git diff` so the report reflects the full change context.
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: "Implement a task from its technical plan and output a report"
|
|
3
|
-
usage: "/implement-task <task-id>"
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
Read and execute the implement-task skill from `.agents/skills/implement-task/SKILL.md`.
|
|
7
|
-
|
|
8
|
-
Follow all steps defined in the skill exactly.
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
description = "Implement a task from its technical plan and output a report"
|
|
2
|
-
prompt = """
|
|
3
|
-
Implement task {{args}}.
|
|
4
|
-
|
|
5
|
-
Read and execute the implement-task skill from `.agents/skills/implement-task/SKILL.md`.
|
|
6
|
-
|
|
7
|
-
Follow all steps defined in the skill exactly.
|
|
8
|
-
"""
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: "Implement a task from its technical plan and output a report"
|
|
3
|
-
agent: general
|
|
4
|
-
subtask: false
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
Implement task $1.
|
|
8
|
-
|
|
9
|
-
Read and execute the implement-task skill from `.agents/skills/implement-task/SKILL.md`.
|
|
10
|
-
|
|
11
|
-
Follow all steps defined in the skill exactly.
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: "Handle code review feedback and fix issues"
|
|
3
|
-
agent: general
|
|
4
|
-
subtask: false
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
Refine task $1.
|
|
8
|
-
|
|
9
|
-
Read and execute the refine-task skill from `.agents/skills/refine-task/SKILL.md`.
|
|
10
|
-
|
|
11
|
-
Follow all steps defined in the skill exactly.
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: "Review a task implementation and output a code review report"
|
|
3
|
-
agent: general
|
|
4
|
-
subtask: false
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
Review task $1.
|
|
8
|
-
|
|
9
|
-
Read and execute the review-task skill from `.agents/skills/review-task/SKILL.md`.
|
|
10
|
-
|
|
11
|
-
Follow all steps defined in the skill exactly.
|
/package/templates/.agents/skills/{implement-task → code-task}/reference/branch-management.en.md
RENAMED
|
File without changes
|