@ludecker/aaac 1.0.0 → 1.1.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 +4 -3
- package/package.json +13 -1
- package/src/cli.mjs +39 -5
- package/src/generators/generate-commands.mjs +120 -3
- package/src/generators/generate-graph.mjs +17 -0
- package/src/lib/install.mjs +1 -0
- package/src/lib/run-engine-paths.mjs +33 -0
- package/src/run-engine/advance-phase.mjs +343 -0
- package/src/run-engine/capability-evidence.mjs +460 -0
- package/src/run-engine/debug-run.mjs +38 -0
- package/src/run-engine/gate-write.mjs +95 -0
- package/src/run-engine/init-run.mjs +215 -0
- package/src/run-engine/lib.mjs +141 -0
- package/src/run-engine/log-dump.mjs +76 -0
- package/src/run-engine/log-trace.mjs +18 -0
- package/src/run-engine/log.mjs +343 -0
- package/src/run-engine/record-task.mjs +56 -0
- package/src/run-engine/stop-check.mjs +55 -0
- package/src/run-engine/verify-website-build.mjs +148 -0
- package/templates/cursor/aaac/capabilities/promotion-rules.json +64 -0
- package/templates/cursor/aaac/capabilities/registry.json +17 -15
- package/templates/cursor/aaac/complexity.yaml +98 -0
- package/templates/cursor/aaac/contracts/commands/fix-bug.yaml +10 -3
- package/templates/cursor/aaac/contracts/commands/fix-module.yaml +41 -0
- package/templates/cursor/aaac/contracts/skills/investigation.yaml +22 -1
- package/templates/cursor/aaac/contracts/skills/planning.yaml +17 -0
- package/templates/cursor/aaac/contracts/skills/validation.yaml +9 -1
- package/templates/cursor/aaac/dispatch.md +31 -6
- package/templates/cursor/aaac/enforcement.json +25 -0
- package/templates/cursor/aaac/fitness-functions.yaml +8 -0
- package/templates/cursor/aaac/governance/gates.json +6 -2
- package/templates/cursor/aaac/graph.project.yaml +237 -5
- package/templates/cursor/aaac/layers.md +6 -1
- package/templates/cursor/aaac/lifecycle/lifecycle.json +41 -1
- package/templates/cursor/aaac/lifecycle/phases.json +1 -0
- package/templates/cursor/aaac/observability/telemetry.yaml +63 -0
- package/templates/cursor/aaac/observability/verb-debug.yaml +170 -0
- package/templates/cursor/aaac/ontology.json +10 -1
- package/templates/cursor/aaac/run/RUN.md +2 -0
- package/templates/cursor/aaac/run/schema.json +11 -0
- package/templates/cursor/aaac/scripts/generate-runtime-registry.mjs +115 -0
- package/templates/cursor/aaac/scripts/run-engine/advance-phase.mjs +343 -0
- package/templates/cursor/aaac/scripts/run-engine/capability-evidence.mjs +460 -0
- package/templates/cursor/aaac/scripts/run-engine/debug-run.mjs +38 -0
- package/templates/cursor/aaac/scripts/run-engine/gate-write.mjs +95 -0
- package/templates/cursor/aaac/scripts/run-engine/init-run.mjs +215 -0
- package/templates/cursor/aaac/scripts/run-engine/lib.mjs +141 -0
- package/templates/cursor/aaac/scripts/run-engine/log-dump.mjs +76 -0
- package/templates/cursor/aaac/scripts/run-engine/log-trace.mjs +18 -0
- package/templates/cursor/aaac/scripts/run-engine/log.mjs +343 -0
- package/templates/cursor/aaac/scripts/run-engine/record-task.mjs +56 -0
- package/templates/cursor/aaac/scripts/run-engine/stop-check.mjs +55 -0
- package/templates/cursor/aaac/scripts/run-engine/verify-website-build.mjs +148 -0
- package/templates/cursor/aaac/state/capability-stats.json +5 -0
- package/templates/cursor/agents/aaac-log-debug.md +72 -0
- package/templates/cursor/agents/fix-code-path.md +27 -0
- package/templates/cursor/agents/fix-hypothesis-validate.md +26 -0
- package/templates/cursor/agents/fix-inventory-confirm.md +22 -0
- package/templates/cursor/agents/fix-recent-changes.md +22 -0
- package/templates/cursor/agents/fix-regression-scope.md +27 -0
- package/templates/cursor/agents/fix-repro-verify.md +21 -0
- package/templates/cursor/agents/fix-repro.md +29 -0
- package/templates/cursor/agents/fix-runtime-evidence.md +22 -0
- package/templates/cursor/agents/fix-test-failures.md +23 -0
- package/templates/cursor/agents/playwright-check-run.md +44 -0
- package/templates/cursor/hooks/aaac-before-submit.sh +3 -0
- package/templates/cursor/hooks/aaac-pre-tool.sh +4 -0
- package/templates/cursor/hooks/aaac-stop.sh +3 -0
- package/templates/cursor/hooks/aaac-subagent-start.sh +3 -0
- package/templates/cursor/hooks.json +30 -0
- package/templates/cursor/policies/minimal-complexity.md +101 -0
- package/templates/cursor/rules/aaac-enforcement.mdc +42 -0
- package/templates/cursor/skills/shared/execution/SKILL.md +1 -1
- package/templates/cursor/skills/shared/fitness-functions/SKILL.md +23 -7
- package/templates/cursor/skills/shared/investigation/SKILL.md +91 -18
- package/templates/cursor/skills/shared/investigation/orchestrator/SKILL.md +12 -4
- package/templates/cursor/skills/shared/planning/SKILL.md +74 -8
- package/templates/cursor/skills/shared/platform-release/SKILL.md +22 -19
- package/templates/cursor/skills/shared/platform-release/orchestrator/contract.yaml +27 -7
- package/templates/cursor/skills/shared/reporting/SKILL.md +2 -1
- package/templates/cursor/skills/shared/root-cause/SKILL.md +14 -3
- package/templates/cursor/skills/shared/testing/SKILL.md +31 -5
- package/templates/cursor/skills/shared/validation/SKILL.md +48 -13
- package/templates/cursor/skills/shared/verbs/_dispatch-utils.md +20 -1
- package/templates/cursor/skills/shared/verbs/_lifecycle.md +3 -2
- package/templates/cursor/skills/shared/verbs/check/orchestrator/SKILL.md +4 -1
- package/templates/cursor/skills/shared/verbs/create/orchestrator/SKILL.md +2 -2
- package/templates/cursor/skills/shared/verbs/fix/orchestrator/SKILL.md +21 -11
- package/templates/cursor/skills/shared/verbs/fix/orchestrator/contract.yaml +19 -4
- package/templates/cursor/skills/shared/verbs/update/orchestrator/SKILL.md +2 -2
- package/templates/cursor/skills/shared/verification/SKILL.md +3 -0
- package/templates/docs/agentic_architecture.md +236 -53
|
@@ -0,0 +1,343 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* Advance Run to next phase. Validates swarm counts + required artifacts.
|
|
4
|
+
* Usage: node advance-phase.mjs <run_id> <completed_phase> [--force]
|
|
5
|
+
*/
|
|
6
|
+
import fs from "fs";
|
|
7
|
+
import path from "path";
|
|
8
|
+
import { spawnSync } from "child_process";
|
|
9
|
+
import { fileURLToPath } from "url";
|
|
10
|
+
import {
|
|
11
|
+
loadRegistry,
|
|
12
|
+
loadEnforcement,
|
|
13
|
+
loadRunManifest,
|
|
14
|
+
runDir,
|
|
15
|
+
isoNow,
|
|
16
|
+
phaseKind,
|
|
17
|
+
isEditPhase,
|
|
18
|
+
isGatePhase,
|
|
19
|
+
writeJson,
|
|
20
|
+
saveActiveRun,
|
|
21
|
+
} from "./lib.mjs";
|
|
22
|
+
import { recordLog } from "./log.mjs";
|
|
23
|
+
import {
|
|
24
|
+
processRunEvidence,
|
|
25
|
+
evaluateCapabilityRuntimePolicy,
|
|
26
|
+
resolveCapabilitiesWithRuntime,
|
|
27
|
+
loadObjectMaturity,
|
|
28
|
+
} from "./capability-evidence.mjs";
|
|
29
|
+
|
|
30
|
+
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
31
|
+
|
|
32
|
+
const runId = process.argv[2];
|
|
33
|
+
const completedPhase = process.argv[3];
|
|
34
|
+
const force = process.argv.includes("--force");
|
|
35
|
+
|
|
36
|
+
if (!runId || !completedPhase) {
|
|
37
|
+
console.error("Usage: advance-phase.mjs <run_id> <completed_phase> [--force]");
|
|
38
|
+
process.exit(1);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
const registry = loadRegistry();
|
|
42
|
+
const enforcement = loadEnforcement();
|
|
43
|
+
const manifestPath = path.join(runDir(runId), "run.json");
|
|
44
|
+
const manifest = loadRunManifest(runId);
|
|
45
|
+
|
|
46
|
+
if (!manifest) {
|
|
47
|
+
console.error(`Run not found: ${runId}`);
|
|
48
|
+
process.exit(1);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
if (manifest.phase !== completedPhase) {
|
|
52
|
+
console.error(
|
|
53
|
+
`Phase mismatch: current=${manifest.phase} completed=${completedPhase}`,
|
|
54
|
+
);
|
|
55
|
+
process.exit(1);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
const minAgents =
|
|
59
|
+
completedPhase === "verify" &&
|
|
60
|
+
(enforcement.fix_commands?.includes(manifest.command) || manifest.verb === "fix")
|
|
61
|
+
? enforcement.swarm_min_agents?.verify_fix
|
|
62
|
+
: enforcement.swarm_min_agents?.[completedPhase];
|
|
63
|
+
const launches = manifest.swarm?.task_launches_this_phase ?? 0;
|
|
64
|
+
if (minAgents && launches < minAgents && !force) {
|
|
65
|
+
recordLog(manifest, {
|
|
66
|
+
event: "gate_fail",
|
|
67
|
+
phase: completedPhase,
|
|
68
|
+
phase_kind: manifest.phase_kind,
|
|
69
|
+
detail: `swarm incomplete: ${launches}/${minAgents} agents`,
|
|
70
|
+
level: "warn",
|
|
71
|
+
});
|
|
72
|
+
manifest.updated_at = isoNow();
|
|
73
|
+
writeJson(manifestPath, manifest);
|
|
74
|
+
console.error(
|
|
75
|
+
`Swarm incomplete: phase ${completedPhase} requires ${minAgents} Task agents, got ${launches}. Launch parallel Task subagents first.`,
|
|
76
|
+
);
|
|
77
|
+
process.exit(2);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
const verifyVerbs = enforcement.verify_verbs ?? ["create", "update", "fix"];
|
|
81
|
+
if (
|
|
82
|
+
completedPhase === "verify" &&
|
|
83
|
+
verifyVerbs.includes(manifest.verb) &&
|
|
84
|
+
!force
|
|
85
|
+
) {
|
|
86
|
+
const verifyScript = path.join(__dirname, "verify-website-build.mjs");
|
|
87
|
+
const verifyRun = spawnSync("node", [verifyScript, "--run-id", runId], {
|
|
88
|
+
encoding: "utf8",
|
|
89
|
+
});
|
|
90
|
+
if (verifyRun.status !== 0) {
|
|
91
|
+
const detail =
|
|
92
|
+
verifyRun.stderr?.trim() ||
|
|
93
|
+
verifyRun.stdout?.trim() ||
|
|
94
|
+
"verify-website-build failed";
|
|
95
|
+
recordLog(manifest, {
|
|
96
|
+
event: "gate_fail",
|
|
97
|
+
phase: completedPhase,
|
|
98
|
+
phase_kind: manifest.phase_kind,
|
|
99
|
+
detail: `website verify failed: ${detail.slice(0, 500)}`,
|
|
100
|
+
level: "warn",
|
|
101
|
+
});
|
|
102
|
+
manifest.updated_at = isoNow();
|
|
103
|
+
writeJson(manifestPath, manifest);
|
|
104
|
+
console.error(
|
|
105
|
+
"Website verify failed (static assets + vite build). Fix errors, then re-run:\n" +
|
|
106
|
+
` node .cursor/aaac/scripts/run-engine/verify-website-build.mjs --run-id ${runId}\n` +
|
|
107
|
+
detail,
|
|
108
|
+
);
|
|
109
|
+
process.exit(2);
|
|
110
|
+
}
|
|
111
|
+
recordLog(manifest, {
|
|
112
|
+
event: "verify_website_pass",
|
|
113
|
+
phase: completedPhase,
|
|
114
|
+
phase_kind: manifest.phase_kind,
|
|
115
|
+
detail: "static assets + vite build",
|
|
116
|
+
level: "info",
|
|
117
|
+
});
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
const requiredArtifacts = enforcement.phase_artifacts?.[completedPhase] ?? [];
|
|
121
|
+
for (const rel of requiredArtifacts) {
|
|
122
|
+
const artifactPath = path.join(runDir(runId), rel);
|
|
123
|
+
if (!fs.existsSync(artifactPath)) {
|
|
124
|
+
recordLog(manifest, {
|
|
125
|
+
event: "gate_fail",
|
|
126
|
+
phase: completedPhase,
|
|
127
|
+
phase_kind: manifest.phase_kind,
|
|
128
|
+
detail: `missing artifact: ${rel}`,
|
|
129
|
+
level: "warn",
|
|
130
|
+
});
|
|
131
|
+
manifest.updated_at = isoNow();
|
|
132
|
+
writeJson(manifestPath, manifest);
|
|
133
|
+
console.error(`Missing artifact: ${rel} (required before leaving ${completedPhase})`);
|
|
134
|
+
process.exit(2);
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
const now = isoNow();
|
|
139
|
+
const completedIsGate = isGatePhase(completedPhase, registry);
|
|
140
|
+
|
|
141
|
+
if (completedIsGate) {
|
|
142
|
+
recordLog(manifest, {
|
|
143
|
+
event: "gate_pass",
|
|
144
|
+
phase: completedPhase,
|
|
145
|
+
phase_kind: "gate",
|
|
146
|
+
detail: "gate phase completed",
|
|
147
|
+
level: "info",
|
|
148
|
+
});
|
|
149
|
+
manifest.gates = manifest.gates ?? { stack: null, results: {} };
|
|
150
|
+
manifest.gates.results[completedPhase] = "pass";
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
if (completedPhase === "execute") {
|
|
154
|
+
recordLog(manifest, {
|
|
155
|
+
event: "execute_complete",
|
|
156
|
+
phase: completedPhase,
|
|
157
|
+
phase_kind: "work",
|
|
158
|
+
detail: "execute phase completed",
|
|
159
|
+
level: "info",
|
|
160
|
+
});
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
manifest.completed.push(completedPhase);
|
|
164
|
+
recordLog(manifest, {
|
|
165
|
+
event: "phase_complete",
|
|
166
|
+
phase: completedPhase,
|
|
167
|
+
phase_kind: manifest.phase_kind,
|
|
168
|
+
detail: minAgents ? `swarm_count=${launches}` : "ok",
|
|
169
|
+
level: "info",
|
|
170
|
+
});
|
|
171
|
+
|
|
172
|
+
let nextPhase = manifest.pending.shift() ?? null;
|
|
173
|
+
|
|
174
|
+
if (nextPhase === "execute" && !force) {
|
|
175
|
+
const resolved =
|
|
176
|
+
manifest.capabilities_resolved &&
|
|
177
|
+
Object.keys(manifest.capabilities_resolved).length > 0
|
|
178
|
+
? manifest.capabilities_resolved
|
|
179
|
+
: resolveCapabilitiesWithRuntime(manifest.object, manifest.verb);
|
|
180
|
+
const policy = evaluateCapabilityRuntimePolicy(resolved, {
|
|
181
|
+
object_maturity: loadObjectMaturity(manifest.object),
|
|
182
|
+
});
|
|
183
|
+
manifest.capability_runtime = policy;
|
|
184
|
+
|
|
185
|
+
const needsBlock =
|
|
186
|
+
policy.action === "block" ||
|
|
187
|
+
(policy.action === "require_approval" && !manifest.capability_runtime_approved);
|
|
188
|
+
|
|
189
|
+
if (needsBlock) {
|
|
190
|
+
manifest.pending.unshift(nextPhase);
|
|
191
|
+
nextPhase = null;
|
|
192
|
+
manifest.status = "blocked";
|
|
193
|
+
manifest.awaiting_approval = policy.action === "require_approval";
|
|
194
|
+
manifest.blocked_reason = policy.reasons.join("; ") || "capability runtime policy";
|
|
195
|
+
recordLog(manifest, {
|
|
196
|
+
event: "gate_fail",
|
|
197
|
+
phase: completedPhase,
|
|
198
|
+
phase_kind: manifest.phase_kind,
|
|
199
|
+
detail: `capability runtime ${policy.action}: ${manifest.blocked_reason}`,
|
|
200
|
+
level: "warn",
|
|
201
|
+
});
|
|
202
|
+
manifest.updated_at = isoNow();
|
|
203
|
+
writeJson(manifestPath, manifest);
|
|
204
|
+
saveActiveRun(manifest.conversation_id ?? null, {
|
|
205
|
+
run_id: runId,
|
|
206
|
+
conversation_id: manifest.conversation_id ?? null,
|
|
207
|
+
command: manifest.command,
|
|
208
|
+
phase: manifest.phase,
|
|
209
|
+
status: manifest.status,
|
|
210
|
+
task_launches_this_phase: 0,
|
|
211
|
+
edit_allowed: false,
|
|
212
|
+
started_at: manifest.created_at,
|
|
213
|
+
});
|
|
214
|
+
console.error(
|
|
215
|
+
`Capability runtime ${policy.action}: ${manifest.blocked_reason}. ` +
|
|
216
|
+
(policy.action === "require_approval"
|
|
217
|
+
? "User must approve in chat; set capability_runtime_approved on Run and retry."
|
|
218
|
+
: "Cannot proceed to execute."),
|
|
219
|
+
);
|
|
220
|
+
process.exit(2);
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
if (policy.action === "warn") {
|
|
224
|
+
recordLog(manifest, {
|
|
225
|
+
event: "capability_runtime_warn",
|
|
226
|
+
phase: completedPhase,
|
|
227
|
+
phase_kind: manifest.phase_kind,
|
|
228
|
+
detail: policy.reasons.join("; "),
|
|
229
|
+
level: "warn",
|
|
230
|
+
});
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
if (!nextPhase) {
|
|
235
|
+
manifest.status = "completed";
|
|
236
|
+
manifest.phase = "report";
|
|
237
|
+
manifest.enforcement.edit_allowed = false;
|
|
238
|
+
recordLog(manifest, {
|
|
239
|
+
event: "run_completed",
|
|
240
|
+
phase: "report",
|
|
241
|
+
phase_kind: "work",
|
|
242
|
+
detail: "all phases completed",
|
|
243
|
+
level: "info",
|
|
244
|
+
});
|
|
245
|
+
|
|
246
|
+
try {
|
|
247
|
+
const evidenceResult = processRunEvidence(runId, { manifest, skipManifestWrite: true });
|
|
248
|
+
if (evidenceResult.ok && !evidenceResult.skipped) {
|
|
249
|
+
manifest.capability_evidence_processed = true;
|
|
250
|
+
manifest.capability_evidence_outcomes = evidenceResult.outcomes;
|
|
251
|
+
if (
|
|
252
|
+
!manifest.capabilities_resolved ||
|
|
253
|
+
!Object.keys(manifest.capabilities_resolved).length
|
|
254
|
+
) {
|
|
255
|
+
manifest.capabilities_resolved = evidenceResult.resolved;
|
|
256
|
+
}
|
|
257
|
+
recordLog(manifest, {
|
|
258
|
+
event: "evidence_aggregated",
|
|
259
|
+
phase: "report",
|
|
260
|
+
phase_kind: "work",
|
|
261
|
+
detail: `capabilities=${(evidenceResult.capabilities ?? []).join(",")}`,
|
|
262
|
+
level: "info",
|
|
263
|
+
});
|
|
264
|
+
for (const outcome of evidenceResult.outcomes ?? []) {
|
|
265
|
+
if (outcome.previous_state !== outcome.new_state) {
|
|
266
|
+
recordLog(manifest, {
|
|
267
|
+
event: "capability_promoted",
|
|
268
|
+
phase: "report",
|
|
269
|
+
phase_kind: "work",
|
|
270
|
+
detail: `${outcome.capability_id}:${outcome.previous_state}→${outcome.new_state}`,
|
|
271
|
+
level: "info",
|
|
272
|
+
});
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
} catch (err) {
|
|
277
|
+
recordLog(manifest, {
|
|
278
|
+
event: "evidence_aggregation_failed",
|
|
279
|
+
phase: "report",
|
|
280
|
+
phase_kind: "work",
|
|
281
|
+
detail: String(err.message ?? err).slice(0, 300),
|
|
282
|
+
level: "warn",
|
|
283
|
+
});
|
|
284
|
+
}
|
|
285
|
+
} else {
|
|
286
|
+
manifest.phase = nextPhase;
|
|
287
|
+
manifest.phase_kind = phaseKind(nextPhase, registry);
|
|
288
|
+
manifest.swarm = { task_launches_this_phase: 0, phase: nextPhase };
|
|
289
|
+
manifest.enforcement.edit_allowed = isEditPhase(nextPhase, enforcement);
|
|
290
|
+
|
|
291
|
+
recordLog(manifest, {
|
|
292
|
+
event: "phase_start",
|
|
293
|
+
phase: nextPhase,
|
|
294
|
+
phase_kind: manifest.phase_kind,
|
|
295
|
+
detail: "advanced",
|
|
296
|
+
level: "info",
|
|
297
|
+
});
|
|
298
|
+
|
|
299
|
+
if (nextPhase === "execute") {
|
|
300
|
+
recordLog(manifest, {
|
|
301
|
+
event: "execute_start",
|
|
302
|
+
phase: nextPhase,
|
|
303
|
+
phase_kind: "work",
|
|
304
|
+
detail: "edit phase unlocked",
|
|
305
|
+
level: "info",
|
|
306
|
+
});
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
if (isGatePhase(nextPhase, registry)) {
|
|
310
|
+
recordLog(manifest, {
|
|
311
|
+
event: "gate_blocked",
|
|
312
|
+
phase: nextPhase,
|
|
313
|
+
phase_kind: "gate",
|
|
314
|
+
detail: "awaiting gate evaluation",
|
|
315
|
+
level: "debug",
|
|
316
|
+
});
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
manifest.updated_at = now;
|
|
321
|
+
writeJson(manifestPath, manifest);
|
|
322
|
+
|
|
323
|
+
saveActiveRun(manifest.conversation_id ?? null, {
|
|
324
|
+
run_id: runId,
|
|
325
|
+
conversation_id: manifest.conversation_id ?? null,
|
|
326
|
+
command: manifest.command,
|
|
327
|
+
phase: manifest.phase,
|
|
328
|
+
status: manifest.status,
|
|
329
|
+
task_launches_this_phase: 0,
|
|
330
|
+
edit_allowed: manifest.enforcement.edit_allowed,
|
|
331
|
+
started_at: manifest.created_at,
|
|
332
|
+
});
|
|
333
|
+
|
|
334
|
+
console.log(
|
|
335
|
+
JSON.stringify({
|
|
336
|
+
ok: true,
|
|
337
|
+
run_id: runId,
|
|
338
|
+
completed: completedPhase,
|
|
339
|
+
phase: manifest.phase,
|
|
340
|
+
status: manifest.status,
|
|
341
|
+
edit_allowed: manifest.enforcement.edit_allowed,
|
|
342
|
+
}),
|
|
343
|
+
);
|