@jaimevalasek/aioson 1.3.0
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/CHANGELOG.md +456 -0
- package/CODE_OF_CONDUCT.md +12 -0
- package/CONTRIBUTING.md +13 -0
- package/LICENSE +21 -0
- package/README.md +254 -0
- package/bin/aioson.js +4 -0
- package/docs/en/cli-reference.md +398 -0
- package/docs/en/i18n.md +52 -0
- package/docs/en/json-schemas.md +41 -0
- package/docs/en/mcp.md +56 -0
- package/docs/en/parallel.md +82 -0
- package/docs/en/qa-browser.md +339 -0
- package/docs/en/release-flow.md +22 -0
- package/docs/en/release-notes-template.md +41 -0
- package/docs/en/release.md +28 -0
- package/docs/en/schemas/agent-prompt.schema.json +17 -0
- package/docs/en/schemas/agents.schema.json +32 -0
- package/docs/en/schemas/context-validate.schema.json +36 -0
- package/docs/en/schemas/doctor.schema.json +89 -0
- package/docs/en/schemas/error.schema.json +24 -0
- package/docs/en/schemas/i18n-add.schema.json +15 -0
- package/docs/en/schemas/index.json +116 -0
- package/docs/en/schemas/info.schema.json +39 -0
- package/docs/en/schemas/init.schema.json +48 -0
- package/docs/en/schemas/install.schema.json +60 -0
- package/docs/en/schemas/locale-apply.schema.json +30 -0
- package/docs/en/schemas/mcp-doctor.schema.json +95 -0
- package/docs/en/schemas/mcp-init.schema.json +122 -0
- package/docs/en/schemas/package-test.schema.json +24 -0
- package/docs/en/schemas/parallel-assign.schema.json +57 -0
- package/docs/en/schemas/parallel-doctor.schema.json +86 -0
- package/docs/en/schemas/parallel-init.schema.json +53 -0
- package/docs/en/schemas/parallel-status.schema.json +94 -0
- package/docs/en/schemas/setup-context.schema.json +39 -0
- package/docs/en/schemas/smoke.schema.json +23 -0
- package/docs/en/schemas/update.schema.json +48 -0
- package/docs/en/schemas/workflow-plan.schema.json +30 -0
- package/docs/en/web3.md +54 -0
- package/docs/pt/README.md +46 -0
- package/docs/pt/advisor-spec.md +335 -0
- package/docs/pt/agentes.md +453 -0
- package/docs/pt/cenarios.md +1230 -0
- package/docs/pt/clientes-ai.md +224 -0
- package/docs/pt/comandos-cli.md +511 -0
- package/docs/pt/genome-3.0-spec.md +296 -0
- package/docs/pt/guia-engineer.md +226 -0
- package/docs/pt/inicio-rapido.md +138 -0
- package/docs/pt/profiler-system.md +214 -0
- package/docs/pt/runtime-observability.md +72 -0
- package/docs/pt/squad-genoma.md +777 -0
- package/docs/pt/web3.md +797 -0
- package/docs/testing/genome-2.0-manual-regression.md +23 -0
- package/docs/testing/genome-2.0-matrix.md +36 -0
- package/docs/testing/genome-2.0-rollout.md +184 -0
- package/package.json +50 -0
- package/src/agents.js +56 -0
- package/src/cli.js +497 -0
- package/src/commands/agents.js +142 -0
- package/src/commands/cloud.js +1767 -0
- package/src/commands/config.js +90 -0
- package/src/commands/context-validate.js +91 -0
- package/src/commands/doctor.js +123 -0
- package/src/commands/genome-doctor.js +41 -0
- package/src/commands/genome-migrate.js +49 -0
- package/src/commands/i18n-add.js +56 -0
- package/src/commands/info.js +41 -0
- package/src/commands/init.js +75 -0
- package/src/commands/install.js +68 -0
- package/src/commands/locale-apply.js +51 -0
- package/src/commands/locale-diff.js +126 -0
- package/src/commands/mcp-doctor.js +406 -0
- package/src/commands/mcp-init.js +379 -0
- package/src/commands/package-e2e.js +273 -0
- package/src/commands/parallel-assign.js +403 -0
- package/src/commands/parallel-doctor.js +437 -0
- package/src/commands/parallel-init.js +249 -0
- package/src/commands/parallel-status.js +290 -0
- package/src/commands/qa-doctor.js +185 -0
- package/src/commands/qa-init.js +161 -0
- package/src/commands/qa-report.js +58 -0
- package/src/commands/qa-run.js +873 -0
- package/src/commands/qa-scan.js +337 -0
- package/src/commands/runtime.js +948 -0
- package/src/commands/scan-project.js +1107 -0
- package/src/commands/setup-context.js +650 -0
- package/src/commands/smoke.js +426 -0
- package/src/commands/squad-doctor.js +358 -0
- package/src/commands/squad-export.js +46 -0
- package/src/commands/squad-pipeline.js +97 -0
- package/src/commands/squad-repair-genomes.js +39 -0
- package/src/commands/squad-status.js +424 -0
- package/src/commands/squad-validate.js +230 -0
- package/src/commands/test-agents.js +194 -0
- package/src/commands/update.js +55 -0
- package/src/commands/workflow-next.js +594 -0
- package/src/commands/workflow-plan.js +108 -0
- package/src/constants.js +314 -0
- package/src/context-parse-reason.js +22 -0
- package/src/context-writer.js +150 -0
- package/src/context.js +217 -0
- package/src/detector.js +261 -0
- package/src/doctor.js +289 -0
- package/src/execution-gateway.js +461 -0
- package/src/genome-files.js +198 -0
- package/src/genome-format.js +442 -0
- package/src/genome-schema.js +215 -0
- package/src/genomes/bindings.js +281 -0
- package/src/genomes.js +467 -0
- package/src/i18n/index.js +103 -0
- package/src/i18n/messages/en.js +784 -0
- package/src/i18n/messages/es.js +718 -0
- package/src/i18n/messages/fr.js +725 -0
- package/src/i18n/messages/pt-BR.js +818 -0
- package/src/i18n/scaffold.js +64 -0
- package/src/installer.js +232 -0
- package/src/lib/genomes/compat.js +206 -0
- package/src/lib/genomes/migrate.js +90 -0
- package/src/lib/squads/genome-repair.js +49 -0
- package/src/locales.js +84 -0
- package/src/onboarding.js +305 -0
- package/src/parser.js +53 -0
- package/src/prompt-tool.js +20 -0
- package/src/qa-html-report.js +472 -0
- package/src/runtime-store.js +1527 -0
- package/src/squads/apply-genome.js +21 -0
- package/src/squads/genome-binding-service.js +154 -0
- package/src/updater.js +32 -0
- package/src/utils.js +46 -0
- package/src/version.js +50 -0
- package/template/.aioson/advisors/.gitkeep +1 -0
- package/template/.aioson/agents/analyst.md +225 -0
- package/template/.aioson/agents/architect.md +221 -0
- package/template/.aioson/agents/dev.md +201 -0
- package/template/.aioson/agents/discovery-design-doc.md +196 -0
- package/template/.aioson/agents/genoma.md +300 -0
- package/template/.aioson/agents/orchestrator.md +107 -0
- package/template/.aioson/agents/pm.md +89 -0
- package/template/.aioson/agents/product.md +361 -0
- package/template/.aioson/agents/profiler-enricher.md +266 -0
- package/template/.aioson/agents/profiler-forge.md +188 -0
- package/template/.aioson/agents/profiler-researcher.md +245 -0
- package/template/.aioson/agents/qa.md +344 -0
- package/template/.aioson/agents/setup.md +381 -0
- package/template/.aioson/agents/squad.md +837 -0
- package/template/.aioson/agents/ux-ui.md +416 -0
- package/template/.aioson/config.md +56 -0
- package/template/.aioson/context/.gitkeep +0 -0
- package/template/.aioson/context/parallel/.gitkeep +0 -0
- package/template/.aioson/context/spec.md.template +37 -0
- package/template/.aioson/genomas/.gitkeep +0 -0
- package/template/.aioson/locales/en/agents/analyst.md +214 -0
- package/template/.aioson/locales/en/agents/architect.md +210 -0
- package/template/.aioson/locales/en/agents/dev.md +187 -0
- package/template/.aioson/locales/en/agents/discovery-design-doc.md +27 -0
- package/template/.aioson/locales/en/agents/genoma.md +212 -0
- package/template/.aioson/locales/en/agents/orchestrator.md +105 -0
- package/template/.aioson/locales/en/agents/pm.md +77 -0
- package/template/.aioson/locales/en/agents/product.md +310 -0
- package/template/.aioson/locales/en/agents/profiler-enricher.md +5 -0
- package/template/.aioson/locales/en/agents/profiler-forge.md +5 -0
- package/template/.aioson/locales/en/agents/profiler-researcher.md +5 -0
- package/template/.aioson/locales/en/agents/qa.md +214 -0
- package/template/.aioson/locales/en/agents/setup.md +342 -0
- package/template/.aioson/locales/en/agents/squad.md +247 -0
- package/template/.aioson/locales/en/agents/ux-ui.md +320 -0
- package/template/.aioson/locales/es/agents/analyst.md +203 -0
- package/template/.aioson/locales/es/agents/architect.md +208 -0
- package/template/.aioson/locales/es/agents/dev.md +183 -0
- package/template/.aioson/locales/es/agents/discovery-design-doc.md +19 -0
- package/template/.aioson/locales/es/agents/genoma.md +102 -0
- package/template/.aioson/locales/es/agents/orchestrator.md +108 -0
- package/template/.aioson/locales/es/agents/pm.md +81 -0
- package/template/.aioson/locales/es/agents/product.md +310 -0
- package/template/.aioson/locales/es/agents/profiler-enricher.md +5 -0
- package/template/.aioson/locales/es/agents/profiler-forge.md +5 -0
- package/template/.aioson/locales/es/agents/profiler-researcher.md +5 -0
- package/template/.aioson/locales/es/agents/qa.md +163 -0
- package/template/.aioson/locales/es/agents/setup.md +347 -0
- package/template/.aioson/locales/es/agents/squad.md +247 -0
- package/template/.aioson/locales/es/agents/ux-ui.md +201 -0
- package/template/.aioson/locales/fr/agents/analyst.md +203 -0
- package/template/.aioson/locales/fr/agents/architect.md +208 -0
- package/template/.aioson/locales/fr/agents/dev.md +183 -0
- package/template/.aioson/locales/fr/agents/discovery-design-doc.md +19 -0
- package/template/.aioson/locales/fr/agents/genoma.md +102 -0
- package/template/.aioson/locales/fr/agents/orchestrator.md +108 -0
- package/template/.aioson/locales/fr/agents/pm.md +81 -0
- package/template/.aioson/locales/fr/agents/product.md +310 -0
- package/template/.aioson/locales/fr/agents/profiler-enricher.md +5 -0
- package/template/.aioson/locales/fr/agents/profiler-forge.md +5 -0
- package/template/.aioson/locales/fr/agents/profiler-researcher.md +5 -0
- package/template/.aioson/locales/fr/agents/qa.md +163 -0
- package/template/.aioson/locales/fr/agents/setup.md +347 -0
- package/template/.aioson/locales/fr/agents/squad.md +247 -0
- package/template/.aioson/locales/fr/agents/ux-ui.md +201 -0
- package/template/.aioson/locales/pt-BR/agents/analyst.md +217 -0
- package/template/.aioson/locales/pt-BR/agents/architect.md +213 -0
- package/template/.aioson/locales/pt-BR/agents/dev.md +198 -0
- package/template/.aioson/locales/pt-BR/agents/discovery-design-doc.md +198 -0
- package/template/.aioson/locales/pt-BR/agents/genoma.md +297 -0
- package/template/.aioson/locales/pt-BR/agents/orchestrator.md +108 -0
- package/template/.aioson/locales/pt-BR/agents/pm.md +81 -0
- package/template/.aioson/locales/pt-BR/agents/product.md +316 -0
- package/template/.aioson/locales/pt-BR/agents/profiler-enricher.md +5 -0
- package/template/.aioson/locales/pt-BR/agents/profiler-forge.md +5 -0
- package/template/.aioson/locales/pt-BR/agents/profiler-researcher.md +5 -0
- package/template/.aioson/locales/pt-BR/agents/qa.md +217 -0
- package/template/.aioson/locales/pt-BR/agents/setup.md +371 -0
- package/template/.aioson/locales/pt-BR/agents/squad.md +772 -0
- package/template/.aioson/locales/pt-BR/agents/ux-ui.md +322 -0
- package/template/.aioson/mcp/servers.md +24 -0
- package/template/.aioson/profiler-reports/.gitkeep +1 -0
- package/template/.aioson/schemas/content-blueprint.schema.json +30 -0
- package/template/.aioson/schemas/genome-meta.schema.json +150 -0
- package/template/.aioson/schemas/genome.schema.json +115 -0
- package/template/.aioson/schemas/readiness.schema.json +27 -0
- package/template/.aioson/schemas/squad-blueprint.schema.json +172 -0
- package/template/.aioson/schemas/squad-manifest.schema.json +276 -0
- package/template/.aioson/skills/dynamic/README.md +30 -0
- package/template/.aioson/skills/dynamic/cardano-docs.md +16 -0
- package/template/.aioson/skills/dynamic/ethereum-docs.md +17 -0
- package/template/.aioson/skills/dynamic/flux-ui-docs.md +13 -0
- package/template/.aioson/skills/dynamic/laravel-docs.md +41 -0
- package/template/.aioson/skills/dynamic/npm-packages.md +16 -0
- package/template/.aioson/skills/dynamic/solana-docs.md +16 -0
- package/template/.aioson/skills/references/premium-command-center-ui/master-application-prompt.md +79 -0
- package/template/.aioson/skills/references/premium-command-center-ui/operational-ux-playbook.md +253 -0
- package/template/.aioson/skills/references/premium-command-center-ui/quality-validation-checklist.md +82 -0
- package/template/.aioson/skills/references/premium-command-center-ui/visual-system-and-component-patterns.md +270 -0
- package/template/.aioson/skills/static/django-patterns.md +342 -0
- package/template/.aioson/skills/static/fastapi-patterns.md +344 -0
- package/template/.aioson/skills/static/filament-patterns.md +267 -0
- package/template/.aioson/skills/static/flux-ui-components.md +262 -0
- package/template/.aioson/skills/static/git-conventions.md +227 -0
- package/template/.aioson/skills/static/interface-design.md +372 -0
- package/template/.aioson/skills/static/jetstream-setup.md +200 -0
- package/template/.aioson/skills/static/laravel-conventions.md +491 -0
- package/template/.aioson/skills/static/nextjs-patterns.md +321 -0
- package/template/.aioson/skills/static/node-express-patterns.md +317 -0
- package/template/.aioson/skills/static/node-typescript-patterns.md +282 -0
- package/template/.aioson/skills/static/premium-command-center-ui.md +190 -0
- package/template/.aioson/skills/static/rails-conventions.md +307 -0
- package/template/.aioson/skills/static/react-motion-patterns.md +577 -0
- package/template/.aioson/skills/static/static-html-patterns.md +1935 -0
- package/template/.aioson/skills/static/tall-stack-patterns.md +286 -0
- package/template/.aioson/skills/static/ui-ux-modern.md +75 -0
- package/template/.aioson/skills/static/web3-cardano-patterns.md +337 -0
- package/template/.aioson/skills/static/web3-ethereum-patterns.md +310 -0
- package/template/.aioson/skills/static/web3-security-checklist.md +284 -0
- package/template/.aioson/skills/static/web3-solana-patterns.md +324 -0
- package/template/.aioson/squads/.artisan/.gitkeep +0 -0
- package/template/.aioson/squads/.gitkeep +0 -0
- package/template/.aioson/squads/memory.md +5 -0
- package/template/.aioson/tasks/squad-analyze.md +83 -0
- package/template/.aioson/tasks/squad-create.md +99 -0
- package/template/.aioson/tasks/squad-design.md +100 -0
- package/template/.aioson/tasks/squad-export.md +20 -0
- package/template/.aioson/tasks/squad-extend.md +68 -0
- package/template/.aioson/tasks/squad-pipeline.md +122 -0
- package/template/.aioson/tasks/squad-repair.md +85 -0
- package/template/.aioson/tasks/squad-validate.md +58 -0
- package/template/.aioson/templates/squads/content-basic/template.json +21 -0
- package/template/.aioson/templates/squads/media-channel/template.json +24 -0
- package/template/.aioson/templates/squads/research-analysis/template.json +22 -0
- package/template/.aioson/templates/squads/software-delivery/template.json +21 -0
- package/template/.claude/commands/aioson/analyst.md +5 -0
- package/template/.claude/commands/aioson/architect.md +5 -0
- package/template/.claude/commands/aioson/dev.md +5 -0
- package/template/.claude/commands/aioson/orchestrator.md +5 -0
- package/template/.claude/commands/aioson/pm.md +5 -0
- package/template/.claude/commands/aioson/qa.md +5 -0
- package/template/.claude/commands/aioson/setup.md +5 -0
- package/template/.claude/commands/aioson/ux-ui.md +5 -0
- package/template/.gemini/GEMINI.md +10 -0
- package/template/.gemini/commands/aios-analyst.toml +4 -0
- package/template/.gemini/commands/aios-architect.toml +7 -0
- package/template/.gemini/commands/aios-dev.toml +8 -0
- package/template/.gemini/commands/aios-discovery-design-doc.toml +4 -0
- package/template/.gemini/commands/aios-orchestrator.toml +8 -0
- package/template/.gemini/commands/aios-pm.toml +8 -0
- package/template/.gemini/commands/aios-product.toml +4 -0
- package/template/.gemini/commands/aios-qa.toml +6 -0
- package/template/.gemini/commands/aios-setup.toml +3 -0
- package/template/.gemini/commands/aios-ux-ui.toml +8 -0
- package/template/AGENTS.md +67 -0
- package/template/CLAUDE.md +31 -0
- package/template/OPENCODE.md +24 -0
- package/template/aioson-models.json +40 -0
|
@@ -0,0 +1,403 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const fs = require('node:fs/promises');
|
|
4
|
+
const path = require('node:path');
|
|
5
|
+
const { validateProjectContextFile } = require('../context');
|
|
6
|
+
const { exists, toRelativeSafe } = require('../utils');
|
|
7
|
+
const { parseWorkers, normalizeClassification } = require('./parallel-init');
|
|
8
|
+
const { recordRuntimeOperation } = require('../execution-gateway');
|
|
9
|
+
|
|
10
|
+
const SOURCE_ALIAS = {
|
|
11
|
+
prd: '.aioson/context/prd.md',
|
|
12
|
+
architecture: '.aioson/context/architecture.md',
|
|
13
|
+
discovery: '.aioson/context/discovery.md'
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
const AUTO_SOURCE_ORDER = ['prd', 'architecture', 'discovery'];
|
|
17
|
+
const MAX_SCOPES = 24;
|
|
18
|
+
|
|
19
|
+
function parseLaneIndex(fileName) {
|
|
20
|
+
const match = String(fileName || '').match(/^agent-(\d+)\.status\.md$/);
|
|
21
|
+
if (!match) return null;
|
|
22
|
+
const value = Number(match[1]);
|
|
23
|
+
if (!Number.isFinite(value) || value <= 0) return null;
|
|
24
|
+
return Math.floor(value);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
function sanitizeScopeLabel(value) {
|
|
28
|
+
return String(value || '')
|
|
29
|
+
.replace(/\[(.*?)\]\((.*?)\)/g, '$1')
|
|
30
|
+
.replace(/[`*_#]/g, '')
|
|
31
|
+
.replace(/\s+/g, ' ')
|
|
32
|
+
.trim()
|
|
33
|
+
.replace(/[:.;]+$/, '');
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
function shouldSkipScope(value) {
|
|
37
|
+
const text = String(value || '').trim().toLowerCase();
|
|
38
|
+
if (!text) return true;
|
|
39
|
+
|
|
40
|
+
const ignored = [
|
|
41
|
+
'overview',
|
|
42
|
+
'notes',
|
|
43
|
+
'out of scope',
|
|
44
|
+
'classification',
|
|
45
|
+
'risks',
|
|
46
|
+
'references',
|
|
47
|
+
'decision log',
|
|
48
|
+
'protocol',
|
|
49
|
+
'metadata',
|
|
50
|
+
'session',
|
|
51
|
+
'scope',
|
|
52
|
+
'dependencies',
|
|
53
|
+
'deliverables',
|
|
54
|
+
'blockers'
|
|
55
|
+
];
|
|
56
|
+
|
|
57
|
+
return ignored.some((token) => text === token || text.includes(token));
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
function unique(values) {
|
|
61
|
+
return Array.from(new Set(values.filter(Boolean)));
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
function extractScopesFromContent(content) {
|
|
65
|
+
const text = String(content || '');
|
|
66
|
+
const lines = text.split(/\r?\n/);
|
|
67
|
+
const headings = [];
|
|
68
|
+
|
|
69
|
+
for (const line of lines) {
|
|
70
|
+
const match = line.match(/^#{2,3}\s+(.+)$/);
|
|
71
|
+
if (!match) continue;
|
|
72
|
+
const label = sanitizeScopeLabel(match[1]);
|
|
73
|
+
if (label.length < 3) continue;
|
|
74
|
+
if (shouldSkipScope(label)) continue;
|
|
75
|
+
headings.push(label);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
const headingScopes = unique(headings).slice(0, MAX_SCOPES);
|
|
79
|
+
if (headingScopes.length > 0) {
|
|
80
|
+
return {
|
|
81
|
+
scopes: headingScopes,
|
|
82
|
+
method: 'headings',
|
|
83
|
+
fallbackUsed: false
|
|
84
|
+
};
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
const bullets = [];
|
|
88
|
+
for (const line of lines) {
|
|
89
|
+
const match = line.match(/^\s*[-*]\s+(?:\[[ xX]\]\s*)?(.+)$/);
|
|
90
|
+
if (!match) continue;
|
|
91
|
+
const label = sanitizeScopeLabel(match[1]);
|
|
92
|
+
if (label.length < 3) continue;
|
|
93
|
+
if (shouldSkipScope(label)) continue;
|
|
94
|
+
bullets.push(label);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
const bulletScopes = unique(bullets).slice(0, MAX_SCOPES);
|
|
98
|
+
if (bulletScopes.length > 0) {
|
|
99
|
+
return {
|
|
100
|
+
scopes: bulletScopes,
|
|
101
|
+
method: 'bullets',
|
|
102
|
+
fallbackUsed: false
|
|
103
|
+
};
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
return {
|
|
107
|
+
scopes: ['Core implementation lane'],
|
|
108
|
+
method: 'fallback',
|
|
109
|
+
fallbackUsed: true
|
|
110
|
+
};
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
async function resolveSourceFile(targetDir, sourceOption) {
|
|
114
|
+
const source = String(sourceOption || 'auto').trim().toLowerCase();
|
|
115
|
+
if (!source || source === 'auto') {
|
|
116
|
+
for (const alias of AUTO_SOURCE_ORDER) {
|
|
117
|
+
const rel = SOURCE_ALIAS[alias];
|
|
118
|
+
const abs = path.join(targetDir, rel);
|
|
119
|
+
if (await exists(abs)) {
|
|
120
|
+
return {
|
|
121
|
+
id: alias,
|
|
122
|
+
relPath: rel,
|
|
123
|
+
absPath: abs
|
|
124
|
+
};
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
return null;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
if (Object.prototype.hasOwnProperty.call(SOURCE_ALIAS, source)) {
|
|
131
|
+
const rel = SOURCE_ALIAS[source];
|
|
132
|
+
return {
|
|
133
|
+
id: source,
|
|
134
|
+
relPath: rel,
|
|
135
|
+
absPath: path.join(targetDir, rel)
|
|
136
|
+
};
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
const absPath = path.isAbsolute(sourceOption)
|
|
140
|
+
? sourceOption
|
|
141
|
+
: path.resolve(targetDir, String(sourceOption || '').trim());
|
|
142
|
+
return {
|
|
143
|
+
id: 'custom',
|
|
144
|
+
relPath: toRelativeSafe(targetDir, absPath),
|
|
145
|
+
absPath
|
|
146
|
+
};
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
function distributeScopes(scopes, workers) {
|
|
150
|
+
const lanes = [];
|
|
151
|
+
for (let i = 1; i <= workers; i += 1) {
|
|
152
|
+
lanes.push({
|
|
153
|
+
lane: i,
|
|
154
|
+
items: []
|
|
155
|
+
});
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
for (let i = 0; i < scopes.length; i += 1) {
|
|
159
|
+
const lane = lanes[i % workers];
|
|
160
|
+
lane.items.push(scopes[i]);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
return lanes;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
function replaceScopeSection(content, items) {
|
|
167
|
+
const text = String(content || '');
|
|
168
|
+
const lines = text.split(/\r?\n/);
|
|
169
|
+
const start = lines.findIndex((line) => line.trim() === '## Scope');
|
|
170
|
+
const scopeLines = items.length > 0 ? items.map((item) => `- ${item}`) : ['- [unassigned]'];
|
|
171
|
+
|
|
172
|
+
if (start === -1) {
|
|
173
|
+
const suffix = lines.length > 0 && lines[lines.length - 1] === '' ? '' : '\n';
|
|
174
|
+
return `${text}${suffix}\n## Scope\n${scopeLines.join('\n')}\n`;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
let end = lines.length;
|
|
178
|
+
for (let i = start + 1; i < lines.length; i += 1) {
|
|
179
|
+
if (lines[i].startsWith('## ')) {
|
|
180
|
+
end = i;
|
|
181
|
+
break;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
const replaced = [
|
|
186
|
+
...lines.slice(0, start + 1),
|
|
187
|
+
...scopeLines,
|
|
188
|
+
...lines.slice(end)
|
|
189
|
+
];
|
|
190
|
+
return `${replaced.join('\n').replace(/\n*$/, '\n')}`;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
function updateTimestamp(content, generatedAt) {
|
|
194
|
+
const text = String(content || '');
|
|
195
|
+
if (text.includes('- updated_at:')) {
|
|
196
|
+
return text.replace(/^- updated_at:\s*.*$/m, `- updated_at: ${generatedAt}`);
|
|
197
|
+
}
|
|
198
|
+
return text;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
function appendSharedDecision(content, generatedAt, sourcePath, workers, scopeCount) {
|
|
202
|
+
const row =
|
|
203
|
+
`| ${generatedAt} | Scope assignment initialized | ` +
|
|
204
|
+
`Source: ${sourcePath} | workers=${workers}, scopes=${scopeCount} |`;
|
|
205
|
+
const text = String(content || '');
|
|
206
|
+
|
|
207
|
+
if (!text.includes('| time | decision | rationale | impact |')) {
|
|
208
|
+
const suffix = text.endsWith('\n') ? '' : '\n';
|
|
209
|
+
return `${text}${suffix}\n## Decision Log\n| time | decision | rationale | impact |\n|------|----------|-----------|--------|\n${row}\n`;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
return `${text.replace(/\n*$/, '\n')}${row}\n`;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
async function runParallelAssign({ args, options = {}, logger, t }) {
|
|
216
|
+
const targetDir = path.resolve(process.cwd(), args[0] || '.');
|
|
217
|
+
const dryRun = Boolean(options['dry-run']);
|
|
218
|
+
const force = Boolean(options.force);
|
|
219
|
+
const workersOptionRaw = options.workers;
|
|
220
|
+
const workersOption = workersOptionRaw !== undefined ? parseWorkers(workersOptionRaw) : null;
|
|
221
|
+
if (workersOptionRaw !== undefined && workersOption === null) {
|
|
222
|
+
throw new Error(
|
|
223
|
+
t('parallel_assign.invalid_workers', {
|
|
224
|
+
min: 2,
|
|
225
|
+
max: 6
|
|
226
|
+
})
|
|
227
|
+
);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
const context = await validateProjectContextFile(targetDir);
|
|
231
|
+
const contextPath = path.join(targetDir, '.aioson/context/project.context.md');
|
|
232
|
+
if (!context.exists) {
|
|
233
|
+
throw new Error(t('parallel_assign.context_missing', { path: contextPath }));
|
|
234
|
+
}
|
|
235
|
+
if (!context.parsed) {
|
|
236
|
+
throw new Error(t('parallel_assign.context_invalid', { path: contextPath }));
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
const classification = normalizeClassification(context.data && context.data.classification);
|
|
240
|
+
if (classification !== 'MEDIUM' && !force) {
|
|
241
|
+
throw new Error(
|
|
242
|
+
t('parallel_assign.requires_medium', {
|
|
243
|
+
classification: classification || t('parallel_assign.classification_unknown')
|
|
244
|
+
})
|
|
245
|
+
);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
const parallelDir = path.join(targetDir, '.aioson/context/parallel');
|
|
249
|
+
if (!(await exists(parallelDir))) {
|
|
250
|
+
throw new Error(
|
|
251
|
+
t('parallel_assign.parallel_missing', {
|
|
252
|
+
path: parallelDir
|
|
253
|
+
})
|
|
254
|
+
);
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
const entries = await fs.readdir(parallelDir);
|
|
258
|
+
const laneIndices = entries
|
|
259
|
+
.map(parseLaneIndex)
|
|
260
|
+
.filter((value) => value !== null)
|
|
261
|
+
.sort((a, b) => a - b);
|
|
262
|
+
|
|
263
|
+
if (laneIndices.length === 0) {
|
|
264
|
+
throw new Error(t('parallel_assign.no_lanes'));
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
const workers = workersOption || Math.max(...laneIndices);
|
|
268
|
+
const expectedIndices = [];
|
|
269
|
+
for (let i = 1; i <= workers; i += 1) expectedIndices.push(i);
|
|
270
|
+
const missingLaneIndices = expectedIndices.filter((index) => !laneIndices.includes(index));
|
|
271
|
+
if (missingLaneIndices.length > 0) {
|
|
272
|
+
throw new Error(
|
|
273
|
+
t('parallel_assign.missing_lanes', {
|
|
274
|
+
lanes: missingLaneIndices.join(', ')
|
|
275
|
+
})
|
|
276
|
+
);
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
const sourceFile = await resolveSourceFile(targetDir, options.source);
|
|
280
|
+
if (!sourceFile || !(await exists(sourceFile.absPath))) {
|
|
281
|
+
throw new Error(
|
|
282
|
+
t('parallel_assign.source_missing', {
|
|
283
|
+
source: String(options.source || 'auto')
|
|
284
|
+
})
|
|
285
|
+
);
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
const sourceContent = await fs.readFile(sourceFile.absPath, 'utf8');
|
|
289
|
+
const extracted = extractScopesFromContent(sourceContent);
|
|
290
|
+
const assignments = distributeScopes(extracted.scopes, workers);
|
|
291
|
+
const generatedAt = new Date().toISOString();
|
|
292
|
+
const filesUpdated = [];
|
|
293
|
+
|
|
294
|
+
for (const lane of assignments) {
|
|
295
|
+
const rel = `.aioson/context/parallel/agent-${lane.lane}.status.md`;
|
|
296
|
+
const lanePath = path.join(targetDir, rel);
|
|
297
|
+
const current = await fs.readFile(lanePath, 'utf8');
|
|
298
|
+
let next = replaceScopeSection(current, lane.items);
|
|
299
|
+
next = updateTimestamp(next, generatedAt);
|
|
300
|
+
if (!dryRun) {
|
|
301
|
+
await fs.writeFile(lanePath, next, 'utf8');
|
|
302
|
+
}
|
|
303
|
+
filesUpdated.push(rel);
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
const sharedPath = path.join(parallelDir, 'shared-decisions.md');
|
|
307
|
+
if (await exists(sharedPath)) {
|
|
308
|
+
const sharedContent = await fs.readFile(sharedPath, 'utf8');
|
|
309
|
+
const nextShared = appendSharedDecision(
|
|
310
|
+
sharedContent,
|
|
311
|
+
generatedAt,
|
|
312
|
+
sourceFile.relPath,
|
|
313
|
+
workers,
|
|
314
|
+
extracted.scopes.length
|
|
315
|
+
);
|
|
316
|
+
if (!dryRun) {
|
|
317
|
+
await fs.writeFile(sharedPath, nextShared, 'utf8');
|
|
318
|
+
}
|
|
319
|
+
filesUpdated.push('.aioson/context/parallel/shared-decisions.md');
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
const output = {
|
|
323
|
+
ok: true,
|
|
324
|
+
targetDir,
|
|
325
|
+
classification: classification || 'MEDIUM',
|
|
326
|
+
workers,
|
|
327
|
+
dryRun,
|
|
328
|
+
force,
|
|
329
|
+
generatedAt,
|
|
330
|
+
source: sourceFile.id,
|
|
331
|
+
sourceFile: sourceFile.relPath,
|
|
332
|
+
extractionMethod: extracted.method,
|
|
333
|
+
fallbackUsed: extracted.fallbackUsed,
|
|
334
|
+
scopeCount: extracted.scopes.length,
|
|
335
|
+
assignments: assignments.map((item) => ({
|
|
336
|
+
lane: item.lane,
|
|
337
|
+
file: `.aioson/context/parallel/agent-${item.lane}.status.md`,
|
|
338
|
+
items: item.items
|
|
339
|
+
})),
|
|
340
|
+
filesUpdated
|
|
341
|
+
};
|
|
342
|
+
|
|
343
|
+
if (!dryRun) {
|
|
344
|
+
output.runtime = await recordRuntimeOperation(targetDir, {
|
|
345
|
+
agentName: 'orchestrator',
|
|
346
|
+
source: 'orchestration',
|
|
347
|
+
sessionKey: 'parallel:workspace',
|
|
348
|
+
title: 'Parallel orchestration workspace',
|
|
349
|
+
goal: 'Prepare and manage parallel development lanes',
|
|
350
|
+
runTitle: 'parallel:assign',
|
|
351
|
+
message: 'Parallel scope assignment started',
|
|
352
|
+
summary: `Parallel scope assignment updated ${output.scopeCount} scopes across ${workers} lanes`,
|
|
353
|
+
eventType: 'parallel.assigned',
|
|
354
|
+
phase: 'parallel',
|
|
355
|
+
payload: {
|
|
356
|
+
command: 'parallel:assign',
|
|
357
|
+
classification: output.classification,
|
|
358
|
+
workers,
|
|
359
|
+
source: output.source,
|
|
360
|
+
sourceFile: output.sourceFile,
|
|
361
|
+
extractionMethod: output.extractionMethod,
|
|
362
|
+
fallbackUsed: output.fallbackUsed,
|
|
363
|
+
scopeCount: output.scopeCount,
|
|
364
|
+
filesUpdated
|
|
365
|
+
}
|
|
366
|
+
});
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
if (options.json) {
|
|
370
|
+
return output;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
logger.log(
|
|
374
|
+
dryRun
|
|
375
|
+
? t('parallel_assign.dry_run_applied', { count: output.scopeCount })
|
|
376
|
+
: t('parallel_assign.applied', { count: output.scopeCount })
|
|
377
|
+
);
|
|
378
|
+
logger.log(
|
|
379
|
+
t('parallel_assign.source_info', {
|
|
380
|
+
source: output.sourceFile
|
|
381
|
+
})
|
|
382
|
+
);
|
|
383
|
+
logger.log(t('parallel_assign.workers_count', { count: workers }));
|
|
384
|
+
logger.log(t('parallel_assign.files_count', { count: filesUpdated.length }));
|
|
385
|
+
for (const assignment of output.assignments) {
|
|
386
|
+
logger.log(
|
|
387
|
+
t('parallel_assign.lane_scope_line', {
|
|
388
|
+
lane: assignment.lane,
|
|
389
|
+
count: assignment.items.length
|
|
390
|
+
})
|
|
391
|
+
);
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
return output;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
module.exports = {
|
|
398
|
+
runParallelAssign,
|
|
399
|
+
extractScopesFromContent,
|
|
400
|
+
parseLaneIndex,
|
|
401
|
+
distributeScopes,
|
|
402
|
+
resolveSourceFile
|
|
403
|
+
};
|