kanbango 3.5.0 → 3.8.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/.ai/lessons.jsonl +6 -0
- package/.ai/retro/last-run.json +1 -1
- package/.ait-quality.yml +1 -0
- package/AGENTS.md +3 -1
- package/CHANGELOG.md +77 -0
- package/LLM_AGENTS.md +1 -1
- package/README.md +34 -3
- package/agent-playbook.js +31 -7
- package/agents/qa-e2e-tester.md +315 -0
- package/agents/qa-tester.md +182 -0
- package/agents/temida.md +81 -0
- package/bin/kanban.js +200 -7
- package/config-wizard.js +441 -0
- package/index.html +115 -23
- package/index.js +2 -0
- package/kanban.js +578 -33
- package/mcp-server.js +89 -21
- package/package.json +1 -1
- package/plan.js +34 -27
- package/tests/fixtures/fake-opencode.js +69 -0
- package/tests/index.js +19 -0
- package/tests/kanban-cli.js +118 -0
- package/tests/kanban.js +104 -0
- package/tests/run.js +9 -0
- package/workflow.js +806 -0
package/tests/run.js
CHANGED
|
@@ -5,6 +5,8 @@ function runNode(scriptPath, args, label) {
|
|
|
5
5
|
const fullPath = path.join(process.cwd(), scriptPath);
|
|
6
6
|
const result = spawnSync(process.execPath, [fullPath, ...(args || [])], {
|
|
7
7
|
stdio: 'inherit',
|
|
8
|
+
// Agent shells often export KANBANGO_AUTO_GUI=1; MCP child tests would hang.
|
|
9
|
+
env: { ...process.env, KANBANGO_AUTO_GUI: '0' }
|
|
8
10
|
});
|
|
9
11
|
if (result.status !== 0) {
|
|
10
12
|
console.error(`✗ ${label} failed`);
|
|
@@ -22,7 +24,14 @@ runNode(path.join('tests', 'gui-cockpit.test.js'), [], 'GUI cockpit layout + wor
|
|
|
22
24
|
runNode(path.join('tests', 'fenced-text.test.js'), [], 'Fenced text test');
|
|
23
25
|
runNode(path.join('tests', 'kanban-mermaid-vendor.test.js'), [], 'Kanban mermaid vendor route test');
|
|
24
26
|
runNode(path.join('tests', 'plan-workflow.test.js'), [], 'Plan workflow test');
|
|
27
|
+
runNode(path.join('tests', 'workflow-gates.test.js'), [], 'Workflow gates test');
|
|
28
|
+
runNode(path.join('tests', 'board-config.test.js'), [], 'Board config columns/agents test');
|
|
29
|
+
runNode(path.join('tests', 'config-wizard.test.js'), [], 'Config wizard TUI test');
|
|
30
|
+
runNode(path.join('tests', 'kanban.js'), [], 'Kanban core test');
|
|
31
|
+
runNode(path.join('tests', 'index.js'), [], 'Package index export test');
|
|
32
|
+
runNode(path.join('tests', 'bin-kanban.test.js'), [], 'CLI bin/kanban test');
|
|
25
33
|
runNode(path.join('tests', 'agent-playbook.test.js'), [], 'Agent playbook test');
|
|
34
|
+
runNode(path.join('tests', 'agent-context.test.js'), [], 'Agent context / depends_on / files test');
|
|
26
35
|
runNode(path.join('tests', 'epics.test.js'), [], 'Epics test');
|
|
27
36
|
runNode(path.join('tests', 'kanban-epic-goals-adr.test.js'), [], 'Epic goals + ADR test');
|
|
28
37
|
runNode(path.join('tests', 'delete-archive.test.js'), [], 'Delete/archive test');
|