kanbango 3.6.2 → 5.1.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/AGENTS.md +25 -18
- package/API.md +58 -170
- package/CHANGELOG.md +76 -0
- package/LLM_AGENTS.md +21 -502
- package/README.md +45 -12
- package/agent-playbook.js +27 -49
- package/bin/kanban.js +395 -300
- package/config-wizard.js +441 -0
- package/index.html +124 -36
- package/kanban.js +892 -263
- package/mcp-server.js +319 -196
- package/package.json +1 -1
- package/plan.js +39 -40
- package/plugins/tui-kanban-controller.js +117 -0
- package/plugins/tui-kanban.tsx +314 -0
- package/workflow.js +368 -21
- package/.ai/lessons.jsonl +0 -9
- package/.ai/retro/close.json +0 -1
- package/.ai/retro/last-run.json +0 -1
- package/.ait-quality.yml +0 -25
- package/bin/kanban-cmd.js +0 -40
- package/kan2.md +0 -76
- package/kanbango.md +0 -48
- package/planv2.md +0 -317
- package/tests/fixtures/fake-opencode.js +0 -69
- package/tests/index.js +0 -19
- package/tests/kanban-cli.js +0 -118
- package/tests/kanban.js +0 -104
- package/tests/run.js +0 -33
package/tests/run.js
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
const { spawnSync } = require('child_process');
|
|
2
|
-
const path = require('path');
|
|
3
|
-
|
|
4
|
-
function runNode(scriptPath, args, label) {
|
|
5
|
-
const fullPath = path.join(process.cwd(), scriptPath);
|
|
6
|
-
const result = spawnSync(process.execPath, [fullPath, ...(args || [])], {
|
|
7
|
-
stdio: 'inherit',
|
|
8
|
-
});
|
|
9
|
-
if (result.status !== 0) {
|
|
10
|
-
console.error(`✗ ${label} failed`);
|
|
11
|
-
process.exit(result.status || 1);
|
|
12
|
-
}
|
|
13
|
-
console.log(`✓ ${label}`);
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
runNode(path.join('bin', 'kanban.js'), ['list', '--json'], 'CLI list');
|
|
17
|
-
runNode(path.join('tests', 'update-tasks.test.js'), [], 'Update tasks test');
|
|
18
|
-
runNode(path.join('tests', 'read-views.test.js'), [], 'Read views test');
|
|
19
|
-
runNode(path.join('tests', 'mcp-server.test.js'), [], 'MCP server test');
|
|
20
|
-
runNode(path.join('tests', 'gui-port.test.js'), [], 'GUI port test');
|
|
21
|
-
runNode(path.join('tests', 'gui-cockpit.test.js'), [], 'GUI cockpit layout + workflow test');
|
|
22
|
-
runNode(path.join('tests', 'fenced-text.test.js'), [], 'Fenced text test');
|
|
23
|
-
runNode(path.join('tests', 'kanban-mermaid-vendor.test.js'), [], 'Kanban mermaid vendor route test');
|
|
24
|
-
runNode(path.join('tests', 'plan-workflow.test.js'), [], 'Plan workflow test');
|
|
25
|
-
runNode(path.join('tests', 'workflow-gates.test.js'), [], 'Workflow gates test');
|
|
26
|
-
runNode(path.join('tests', 'kanban.js'), [], 'Kanban core test');
|
|
27
|
-
runNode(path.join('tests', 'index.js'), [], 'Package index export test');
|
|
28
|
-
runNode(path.join('tests', 'bin-kanban.test.js'), [], 'CLI bin/kanban test');
|
|
29
|
-
runNode(path.join('tests', 'agent-playbook.test.js'), [], 'Agent playbook test');
|
|
30
|
-
runNode(path.join('tests', 'epics.test.js'), [], 'Epics test');
|
|
31
|
-
runNode(path.join('tests', 'kanban-epic-goals-adr.test.js'), [], 'Epic goals + ADR test');
|
|
32
|
-
runNode(path.join('tests', 'delete-archive.test.js'), [], 'Delete/archive test');
|
|
33
|
-
runNode(path.join('tests', 'race-conditions.test.js'), [], 'Race conditions test');
|