Move the harness-config files out of the mixed .specify/level5 and .specify/agentops
dirs (which also hold governance/domain/state) into packages/casan-harness, leaving a
per-file compat symlink at each old path. Runtime state and governance stay in place.
Moved (+ .specify symlink each):
level5: drift-policy.yaml kpi-schema.yaml model-fallback.yaml tool-registry.yaml
harness-package.json project-registry.json provider-usage-sample.json
agentops: alerts.yaml hallucination-tracking.yaml metrics.yaml rate-limits.yaml tracking.yaml
top: init-options.json
Stays in .specify: level5/central-governance (governance), level5/golden-runs (domain,
Phase 3), agentops/alerts.log (state), traceability-map.json (domain, Phase 3).
Full gate: PASS=64 FAIL=0 SKIP=3 (CASAN_CI_STEP_TIMEOUT_SEC=1200).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
62 lines
884 B
YAML
62 lines
884 B
YAML
version: 1.0
|
|
description: Agent Tracking & Tracing Configuration
|
|
|
|
tracking:
|
|
|
|
enabled: true
|
|
|
|
trace:
|
|
|
|
fields:
|
|
- trace_id
|
|
- timestamp
|
|
- user_input
|
|
- processed_input
|
|
- output
|
|
- latency_ms
|
|
- tokens_input
|
|
- tokens_output
|
|
- total_tokens
|
|
- cost_estimate
|
|
- retry_count
|
|
- status
|
|
- error
|
|
|
|
correlation:
|
|
|
|
enable: true
|
|
key: trace_id
|
|
|
|
stages:
|
|
|
|
- name: input_received
|
|
log: true
|
|
|
|
- name: security_checked
|
|
log: true
|
|
|
|
- name: governance_checked
|
|
log: true
|
|
|
|
- name: llm_called
|
|
log: true
|
|
|
|
- name: output_filtered
|
|
log: true
|
|
|
|
storage:
|
|
|
|
type: file
|
|
path: ".specify/logs/trace/"
|
|
|
|
format: json
|
|
|
|
retention:
|
|
|
|
days: 30
|
|
|
|
logging:
|
|
|
|
level: info
|
|
include_input: true
|
|
include_output: true |