-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnodeagent.yaml
More file actions
47 lines (39 loc) · 1.5 KB
/
Copy pathnodeagent.yaml
File metadata and controls
47 lines (39 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# NodeAgent application composition — phase 0 (declares the LIVE system).
# The runtime engine is repo-local today; "engine: nodeagent-native" becomes
# accurate only after the NodeRoom->NodeAgent runtime extraction lands and this
# repo consumes @nodeagent/runtime. Until then this manifest documents reality.
apiVersion: nodeagent.dev/v1
kind: AgentApplication
metadata:
name: nodebench-entity-intelligence
version: 1.0.0
spec:
authoring:
directory: ./agent
# Source of truth remains code until a manifest compiler exists:
# backend/convex/domains/redesign/chatRuns.ts (orchestrator prompts + response shapes)
# backend/convex/domains/agents/** (orchestrator-workers, trace types)
# workers/node/pipeline/** (judge gates, projection writer)
runtime:
engine: repo-local # target: nodeagent-native
profile: production
backend:
adapter: convex
path: ./convex
packs:
- ./packs/entity-intelligence/pack.yaml
orchestration:
planner: orchestrator-workers # .claude/rules/orchestrator_workers.md
maxConcurrentSubagents: 10 # harness lane cap
policies:
ref: ./agent/policies
evaluations:
required:
- id: conformance
command: npm run test:e2e:check # ui-contract runner (Tier B per PR)
- id: smoke
command: npm run dogfood:verify:smoke
- id: benchmark
command: npx tsx packages/mcp-local/src/benchmarks/searchQualityEval.ts
- id: production
command: npm run verify-live