d7a74578dc
- Reorganize flat files into core/ templates/ examples/ scripts/ with VERSION - Deduplicate: single-source state machine, three-round policy, acceptance signals - Abstract orchestration in closed-loop.md with manual mode; move Orca commands to orca-adapter.md - Add tasks.schema.json + validate_tasks.py (jsonschema or builtin rules, no hard deps) - Add filled examples, concurrency write rule, kitVersion tracking; unify to Chinese Co-authored-by: Cursor <cursoragent@cursor.com>
68 lines
1.5 KiB
YAML
68 lines
1.5 KiB
YAML
# 复制到项目根目录为 tasks.yaml,替换占位符。结构见 templates/tasks.schema.json。
|
|
version: 1
|
|
updatedAt: "<YYYY-MM-DDTHH:mm:ss+TZ>"
|
|
source: "Product/Test Agent"
|
|
kitVersion: "<接入时的 agent-collaboration-kit 版本,见 kit 根 VERSION>"
|
|
project:
|
|
name: "<project_name>"
|
|
repoPath: "<repo_path>"
|
|
baseUrl: "<base_url>"
|
|
devWorktree: "<dev_worktree>"
|
|
|
|
summary:
|
|
verified: []
|
|
open: []
|
|
failedRetest: []
|
|
leftovers: []
|
|
|
|
tasks:
|
|
- id: "BUG-001"
|
|
type: "bug"
|
|
title: "<short title>"
|
|
priority: "P0"
|
|
status: "open"
|
|
assignee: "developer"
|
|
component: "<source file or module>"
|
|
specRefs:
|
|
- "<docs/spec.md#section>"
|
|
testRefs:
|
|
- "<tests/browser/cases/01-case.md>"
|
|
|
|
description: >
|
|
<What is wrong, in user-visible terms.>
|
|
|
|
stepsToReproduce:
|
|
- "<step 1>"
|
|
- "<step 2>"
|
|
|
|
expected: >
|
|
<Expected behavior.>
|
|
|
|
actual: >
|
|
<Actual behavior observed by Product/Test.>
|
|
|
|
evidence:
|
|
browser: "<snapshot text, screenshot path, or UI finding>"
|
|
api: "<curl result or API mismatch>"
|
|
logs: "<relevant log line if any>"
|
|
|
|
verification:
|
|
commands:
|
|
- "<unit/build command>"
|
|
- "<browser/API smoke command>"
|
|
browser:
|
|
page: "<page path>"
|
|
checks:
|
|
- "<visible text or interaction expected>"
|
|
|
|
dispatch:
|
|
taskId: null
|
|
dispatchId: null
|
|
worker: null
|
|
rounds: []
|
|
|
|
resolution:
|
|
fixedBy: null
|
|
verifiedAt: null
|
|
leftoverReason: null
|