agent-tasks 1.5.0 → 1.6.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.
Files changed (49) hide show
  1. package/README.md +188 -74
  2. package/dist/context.d.ts +4 -0
  3. package/dist/context.d.ts.map +1 -1
  4. package/dist/context.js +11 -0
  5. package/dist/context.js.map +1 -1
  6. package/dist/domain/approvals.d.ts +1 -0
  7. package/dist/domain/approvals.d.ts.map +1 -1
  8. package/dist/domain/approvals.js +13 -3
  9. package/dist/domain/approvals.js.map +1 -1
  10. package/dist/domain/collaborators.d.ts +1 -0
  11. package/dist/domain/collaborators.d.ts.map +1 -1
  12. package/dist/domain/collaborators.js +14 -1
  13. package/dist/domain/collaborators.js.map +1 -1
  14. package/dist/domain/comments.d.ts.map +1 -1
  15. package/dist/domain/comments.js +6 -3
  16. package/dist/domain/comments.js.map +1 -1
  17. package/dist/domain/events.d.ts +1 -0
  18. package/dist/domain/events.d.ts.map +1 -1
  19. package/dist/domain/events.js +13 -4
  20. package/dist/domain/events.js.map +1 -1
  21. package/dist/domain/rules.js +46 -46
  22. package/dist/domain/tasks.d.ts +8 -2
  23. package/dist/domain/tasks.d.ts.map +1 -1
  24. package/dist/domain/tasks.js +61 -22
  25. package/dist/domain/tasks.js.map +1 -1
  26. package/dist/domain/validate.d.ts +2 -0
  27. package/dist/domain/validate.d.ts.map +1 -1
  28. package/dist/domain/validate.js +5 -2
  29. package/dist/domain/validate.js.map +1 -1
  30. package/dist/index.js +13 -2
  31. package/dist/index.js.map +1 -1
  32. package/dist/storage/database.js +10 -1
  33. package/dist/storage/database.js.map +1 -1
  34. package/dist/transport/mcp.d.ts.map +1 -1
  35. package/dist/transport/mcp.js +165 -7
  36. package/dist/transport/mcp.js.map +1 -1
  37. package/dist/transport/rest.d.ts.map +1 -1
  38. package/dist/transport/rest.js +164 -12
  39. package/dist/transport/rest.js.map +1 -1
  40. package/dist/transport/ws.d.ts.map +1 -1
  41. package/dist/transport/ws.js +39 -25
  42. package/dist/transport/ws.js.map +1 -1
  43. package/dist/types.d.ts +2 -1
  44. package/dist/types.d.ts.map +1 -1
  45. package/dist/types.js.map +1 -1
  46. package/dist/ui/app.js +1466 -141
  47. package/dist/ui/index.html +104 -14
  48. package/dist/ui/styles.css +1918 -288
  49. package/package.json +84 -78
package/package.json CHANGED
@@ -1,78 +1,84 @@
1
- {
2
- "name": "agent-tasks",
3
- "version": "1.5.0",
4
- "description": "Pipeline-driven task management for AI coding agents — stages, dependencies, artifacts, and multi-agent claiming",
5
- "type": "module",
6
- "main": "dist/index.js",
7
- "bin": {
8
- "agent-tasks": "dist/index.js"
9
- },
10
- "scripts": {
11
- "build": "tsc && node scripts/copy-ui.js",
12
- "dev": "tsc --watch",
13
- "start": "node dist/index.js",
14
- "start:server": "node dist/server.js",
15
- "test": "vitest run",
16
- "test:watch": "vitest",
17
- "test:coverage": "vitest run --coverage",
18
- "lint": "eslint src/ tests/",
19
- "lint:fix": "eslint src/ tests/ --fix",
20
- "format": "prettier --write .",
21
- "format:check": "prettier --check .",
22
- "typecheck": "tsc --noEmit",
23
- "check": "npm run typecheck && npm run lint && npm run format:check && npm run test",
24
- "prepare": "husky"
25
- },
26
- "lint-staged": {
27
- "*.{ts,js}": [
28
- "prettier --write",
29
- "eslint --fix"
30
- ],
31
- "*.{json,md,css,html}": [
32
- "prettier --write"
33
- ]
34
- },
35
- "dependencies": {
36
- "better-sqlite3": "^12.8.0",
37
- "ws": "^8.20.0"
38
- },
39
- "devDependencies": {
40
- "@eslint/js": "^10.0.1",
41
- "@types/better-sqlite3": "^7.6.13",
42
- "@types/node": "^22.0.0",
43
- "@types/ws": "^8.18.1",
44
- "@vitest/coverage-v8": "^3.2.4",
45
- "eslint": "^10.1.0",
46
- "husky": "^9.1.7",
47
- "lint-staged": "^16.4.0",
48
- "prettier": "^3.8.1",
49
- "typescript": "^5.7.0",
50
- "typescript-eslint": "^8.57.2",
51
- "vitest": "^3.0.0"
52
- },
53
- "engines": {
54
- "node": ">=20.11.0"
55
- },
56
- "keywords": [
57
- "mcp",
58
- "agent",
59
- "tasks",
60
- "pipeline",
61
- "multi-agent",
62
- "model-context-protocol",
63
- "ai-agents",
64
- "kanban",
65
- "workflow",
66
- "claude-code"
67
- ],
68
- "files": [
69
- "dist/",
70
- "README.md",
71
- "LICENSE"
72
- ],
73
- "license": "MIT",
74
- "repository": {
75
- "type": "git",
76
- "url": "https://github.com/keshrath/agent-tasks.git"
77
- }
78
- }
1
+ {
2
+ "name": "agent-tasks",
3
+ "version": "1.6.0",
4
+ "description": "Pipeline-driven task management for AI coding agents — stages, dependencies, artifacts, and multi-agent claiming",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "agent-tasks": "dist/index.js"
9
+ },
10
+ "scripts": {
11
+ "build": "tsc && node scripts/copy-ui.js",
12
+ "dev": "tsc --watch",
13
+ "start": "node dist/index.js",
14
+ "start:server": "node dist/server.js",
15
+ "test": "vitest run",
16
+ "test:watch": "vitest",
17
+ "test:coverage": "vitest run --coverage",
18
+ "lint": "eslint src/ tests/",
19
+ "lint:fix": "eslint src/ tests/ --fix",
20
+ "format": "prettier --write .",
21
+ "format:check": "prettier --check .",
22
+ "typecheck": "tsc --noEmit",
23
+ "check": "npm run typecheck && npm run lint && npm run format:check && npm run test",
24
+ "prepare": "husky"
25
+ },
26
+ "lint-staged": {
27
+ "*.{ts,js}": [
28
+ "prettier --write",
29
+ "eslint --fix"
30
+ ],
31
+ "*.{json,md,css,html}": [
32
+ "prettier --write"
33
+ ]
34
+ },
35
+ "dependencies": {
36
+ "better-sqlite3": "^12.8.0",
37
+ "morphdom": "^2.7.8",
38
+ "ws": "^8.20.0"
39
+ },
40
+ "devDependencies": {
41
+ "@eslint/js": "^10.0.1",
42
+ "@types/better-sqlite3": "^7.6.13",
43
+ "@types/node": "^22.0.0",
44
+ "@types/ws": "^8.18.1",
45
+ "@vitest/coverage-v8": "^3.2.4",
46
+ "eslint": "^10.1.0",
47
+ "husky": "^9.1.7",
48
+ "lint-staged": "^16.4.0",
49
+ "prettier": "^3.8.1",
50
+ "typescript": "^5.7.0",
51
+ "typescript-eslint": "^8.57.2",
52
+ "vitest": "^3.0.0"
53
+ },
54
+ "engines": {
55
+ "node": ">=20.11.0"
56
+ },
57
+ "keywords": [
58
+ "mcp",
59
+ "agent",
60
+ "tasks",
61
+ "pipeline",
62
+ "multi-agent",
63
+ "model-context-protocol",
64
+ "ai-agents",
65
+ "kanban",
66
+ "workflow",
67
+ "claude-code"
68
+ ],
69
+ "files": [
70
+ "dist/",
71
+ "README.md",
72
+ "LICENSE"
73
+ ],
74
+ "license": "MIT",
75
+ "author": "keshrath",
76
+ "repository": {
77
+ "type": "git",
78
+ "url": "https://github.com/keshrath/agent-tasks.git"
79
+ },
80
+ "homepage": "https://github.com/keshrath/agent-tasks",
81
+ "bugs": {
82
+ "url": "https://github.com/keshrath/agent-tasks/issues"
83
+ }
84
+ }