@hasna/todos 0.11.75 → 0.11.81

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 (57) hide show
  1. package/README.md +8 -0
  2. package/dist/cli/cloud-router.d.ts +71 -0
  3. package/dist/cli/cloud-router.d.ts.map +1 -0
  4. package/dist/cli/commands/project-commands.d.ts.map +1 -1
  5. package/dist/cli/commands/storage-commands.d.ts.map +1 -1
  6. package/dist/cli/commands/task-commands.d.ts.map +1 -1
  7. package/dist/cli/helpers.d.ts +22 -0
  8. package/dist/cli/helpers.d.ts.map +1 -1
  9. package/dist/cli/index.js +72374 -62374
  10. package/dist/contracts.js +314 -14
  11. package/dist/db/database.d.ts.map +1 -1
  12. package/dist/index.js +1158 -236
  13. package/dist/lib/shadow-status.d.ts +38 -0
  14. package/dist/lib/shadow-status.d.ts.map +1 -0
  15. package/dist/mcp/index.js +10249 -340
  16. package/dist/mcp/tools/task-adv-tools.d.ts.map +1 -1
  17. package/dist/mcp/tools/task-crud.d.ts.map +1 -1
  18. package/dist/mcp/tools/task-project-tools.d.ts.map +1 -1
  19. package/dist/mcp/tools/task-workflow-tools.d.ts.map +1 -1
  20. package/dist/registry.js +314 -14
  21. package/dist/release-provenance.json +3 -3
  22. package/dist/sdk/index.d.ts +2 -0
  23. package/dist/sdk/index.d.ts.map +1 -1
  24. package/dist/sdk/index.js +135 -0
  25. package/dist/sdk/v1.generated.d.ts +124 -0
  26. package/dist/sdk/v1.generated.d.ts.map +1 -0
  27. package/dist/server/cloud.d.ts +50 -0
  28. package/dist/server/cloud.d.ts.map +1 -0
  29. package/dist/server/index.js +11944 -2012
  30. package/dist/server/openapi.d.ts +628 -0
  31. package/dist/server/openapi.d.ts.map +1 -0
  32. package/dist/server/serve.d.ts.map +1 -1
  33. package/dist/server/v1.d.ts +19 -0
  34. package/dist/server/v1.d.ts.map +1 -0
  35. package/dist/storage/cloud-client.d.ts +30 -0
  36. package/dist/storage/cloud-client.d.ts.map +1 -0
  37. package/dist/storage/config.d.ts +12 -0
  38. package/dist/storage/config.d.ts.map +1 -1
  39. package/dist/storage/factory.d.ts +2 -0
  40. package/dist/storage/factory.d.ts.map +1 -1
  41. package/dist/storage/index.d.ts +8 -1
  42. package/dist/storage/index.d.ts.map +1 -1
  43. package/dist/storage/postgres-adapter.d.ts.map +1 -1
  44. package/dist/storage/postgres-sync.d.ts.map +1 -1
  45. package/dist/storage/shadow-outbox-schema.d.ts +21 -0
  46. package/dist/storage/shadow-outbox-schema.d.ts.map +1 -0
  47. package/dist/storage/shadow-outbox.d.ts +125 -0
  48. package/dist/storage/shadow-outbox.d.ts.map +1 -0
  49. package/dist/storage/shadow-runtime.d.ts +29 -0
  50. package/dist/storage/shadow-runtime.d.ts.map +1 -0
  51. package/dist/storage/shadow.d.ts +118 -0
  52. package/dist/storage/shadow.d.ts.map +1 -0
  53. package/dist/storage.d.ts +2 -1
  54. package/dist/storage.d.ts.map +1 -1
  55. package/dist/storage.js +1157 -220
  56. package/package.json +6 -2
  57. package/vendor/hasna-contracts-0.5.1.tgz +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hasna/todos",
3
- "version": "0.11.75",
3
+ "version": "0.11.81",
4
4
  "description": "Universal task management for AI coding agents - CLI + MCP server + interactive TUI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -42,11 +42,15 @@
42
42
  "files": [
43
43
  "dist",
44
44
  "dashboard/dist",
45
+ "vendor",
45
46
  "LICENSE",
46
47
  "README.md"
47
48
  ],
48
49
  "scripts": {
49
50
  "build": "rm -rf dist dashboard/dist && cd dashboard && bun install --frozen-lockfile && bun run build && cd .. && bun build src/cli/index.tsx --outdir dist/cli --target bun --external ink --external react --external chalk --external @modelcontextprotocol/sdk && bun build src/mcp/index.ts --outdir dist/mcp --target bun --external @modelcontextprotocol/sdk && bun build src/server/index.ts --outdir dist/server --target bun && bun build src/sdk/index.ts --outdir dist/sdk --target bun && bun build src/index.ts src/mcp.ts src/registry.ts src/contracts.ts src/storage.ts --outdir dist --target bun && tsc --emitDeclarationOnly --outDir dist",
51
+ "build:server": "rm -rf dist && bun build src/cli/index.tsx --outdir dist/cli --target bun --external ink --external react --external chalk --external @modelcontextprotocol/sdk && bun build src/mcp/index.ts --outdir dist/mcp --target bun --external @modelcontextprotocol/sdk && bun build src/server/index.ts --outdir dist/server --target bun && bun build src/sdk/index.ts --outdir dist/sdk --target bun && bun build src/index.ts src/mcp.ts src/registry.ts src/contracts.ts src/storage.ts --outdir dist --target bun",
52
+ "migrate": "bun run src/server/index.ts migrate",
53
+ "generate:sdk": "bun run scripts/generate-sdk.ts",
50
54
  "build:dashboard": "cd dashboard && bun install --frozen-lockfile && bun run build",
51
55
  "typecheck": "tsc --noEmit",
52
56
  "test": "bun test",
@@ -89,7 +93,7 @@
89
93
  "author": "Andrei Hasna <andrei@hasna.com>",
90
94
  "license": "Apache-2.0",
91
95
  "dependencies": {
92
- "@hasna/contracts": "^0.2.2",
96
+ "@hasna/contracts": "0.5.2",
93
97
  "@hasna/events": "^0.1.11",
94
98
  "@modelcontextprotocol/sdk": "^1.12.1",
95
99
  "chalk": "^5.4.1",
Binary file