prjct-cli 0.31.0 → 0.34.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 (121) hide show
  1. package/CHANGELOG.md +183 -0
  2. package/CLAUDE.md +41 -0
  3. package/core/__tests__/agentic/memory-system.test.ts +2 -2
  4. package/core/__tests__/types/fs.test.ts +125 -0
  5. package/core/agentic/agent-router.ts +16 -4
  6. package/core/agentic/chain-of-thought.ts +4 -12
  7. package/core/agentic/command-executor.ts +10 -11
  8. package/core/agentic/context-builder.ts +24 -10
  9. package/core/agentic/ground-truth.ts +139 -55
  10. package/core/agentic/prompt-builder.ts +20 -7
  11. package/core/agentic/smart-context.ts +1 -1
  12. package/core/agentic/template-loader.ts +1 -1
  13. package/core/agentic/tool-registry.ts +4 -2
  14. package/core/bus/bus.ts +1 -1
  15. package/core/commands/cleanup.ts +24 -8
  16. package/core/commands/planning.ts +4 -2
  17. package/core/commands/setup.ts +4 -4
  18. package/core/commands/shipping.ts +34 -8
  19. package/core/commands/snapshots.ts +27 -13
  20. package/core/context/generator.ts +9 -5
  21. package/core/domain/agent-generator.ts +1 -1
  22. package/core/domain/agent-loader.ts +1 -1
  23. package/core/domain/analyzer.ts +76 -31
  24. package/core/domain/context-estimator.ts +1 -1
  25. package/core/domain/snapshot-manager.ts +55 -21
  26. package/core/domain/task-stack.ts +16 -7
  27. package/core/infrastructure/author-detector.ts +1 -1
  28. package/core/infrastructure/claude-agent.ts +12 -8
  29. package/core/infrastructure/command-installer.ts +42 -21
  30. package/core/infrastructure/editors-config.ts +1 -1
  31. package/core/infrastructure/path-manager.ts +27 -2
  32. package/core/infrastructure/permission-manager.ts +1 -1
  33. package/core/infrastructure/setup.ts +31 -13
  34. package/core/infrastructure/update-checker.ts +5 -5
  35. package/core/integrations/jira/client.ts +91 -30
  36. package/core/integrations/jira/index.ts +29 -5
  37. package/core/integrations/jira/mcp-adapter.ts +451 -0
  38. package/core/integrations/linear/client.ts +23 -3
  39. package/core/plugin/loader.ts +16 -6
  40. package/core/plugin/registry.ts +16 -6
  41. package/core/server/routes-extended.ts +13 -6
  42. package/core/server/routes.ts +15 -5
  43. package/core/server/sse.ts +4 -3
  44. package/core/services/agent-service.ts +4 -2
  45. package/core/services/memory-service.ts +16 -5
  46. package/core/services/project-service.ts +11 -2
  47. package/core/services/skill-service.ts +4 -3
  48. package/core/session/compaction.ts +4 -5
  49. package/core/session/metrics.ts +11 -4
  50. package/core/session/task-session-manager.ts +27 -9
  51. package/core/storage/storage-manager.ts +12 -5
  52. package/core/storage/storage.ts +26 -10
  53. package/core/sync/auth-config.ts +2 -2
  54. package/core/sync/oauth-handler.ts +1 -1
  55. package/core/sync/sync-client.ts +4 -2
  56. package/core/sync/sync-manager.ts +1 -1
  57. package/core/types/agentic.ts +8 -18
  58. package/core/types/config.ts +1 -1
  59. package/core/types/index.ts +3 -2
  60. package/core/types/integrations.ts +4 -48
  61. package/core/types/storage.ts +0 -8
  62. package/core/types/task.ts +0 -4
  63. package/core/utils/file-helper.ts +10 -4
  64. package/core/utils/jsonl-helper.ts +4 -4
  65. package/core/utils/keychain.ts +130 -0
  66. package/core/utils/logger.ts +27 -25
  67. package/core/utils/runtime.ts +1 -1
  68. package/core/utils/session-helper.ts +4 -4
  69. package/core/utils/version.ts +1 -1
  70. package/package.json +1 -1
  71. package/packages/shared/src/utils.ts +1 -1
  72. package/scripts/postinstall.js +26 -2
  73. package/templates/agentic/orchestrator.md +303 -0
  74. package/templates/commands/bug.md +2 -0
  75. package/templates/commands/enrich.md +601 -195
  76. package/templates/commands/github.md +287 -0
  77. package/templates/commands/init.md +45 -26
  78. package/templates/commands/jira.md +198 -258
  79. package/templates/commands/linear.md +186 -172
  80. package/templates/commands/monday.md +232 -0
  81. package/templates/commands/p.md +57 -10
  82. package/templates/commands/setup.md +4 -1
  83. package/templates/commands/sync.md +133 -97
  84. package/templates/commands/task.md +12 -0
  85. package/templates/config/skill-mappings.json +95 -63
  86. package/templates/mcp-config.json +42 -39
  87. package/core/integrations/notion/client.ts +0 -413
  88. package/core/integrations/notion/index.ts +0 -46
  89. package/core/integrations/notion/setup.ts +0 -235
  90. package/core/integrations/notion/sync.ts +0 -818
  91. package/core/integrations/notion/templates.ts +0 -246
  92. package/core/plugin/builtin/notion.ts +0 -178
  93. package/dist/bin/prjct.mjs +0 -13581
  94. package/dist/core/infrastructure/command-installer.js +0 -473
  95. package/dist/core/infrastructure/editors-config.js +0 -157
  96. package/dist/core/infrastructure/setup.js +0 -893
  97. package/dist/core/utils/version.js +0 -142
  98. package/packages/shared/.turbo/turbo-build.log +0 -14
  99. package/packages/shared/dist/index.d.ts +0 -10
  100. package/packages/shared/dist/index.d.ts.map +0 -1
  101. package/packages/shared/dist/index.js +0 -4196
  102. package/packages/shared/dist/schemas.d.ts +0 -408
  103. package/packages/shared/dist/schemas.d.ts.map +0 -1
  104. package/packages/shared/dist/types.d.ts +0 -144
  105. package/packages/shared/dist/types.d.ts.map +0 -1
  106. package/packages/shared/dist/unified.d.ts +0 -139
  107. package/packages/shared/dist/unified.d.ts.map +0 -1
  108. package/packages/shared/dist/utils.d.ts +0 -60
  109. package/packages/shared/dist/utils.d.ts.map +0 -1
  110. package/templates/commands/ask.md +0 -128
  111. package/templates/commands/dashboard.md +0 -686
  112. package/templates/commands/feature.md +0 -46
  113. package/templates/commands/now.md +0 -53
  114. package/templates/commands/suggest.md +0 -116
  115. package/templates/global/docs/agents.md +0 -88
  116. package/templates/global/docs/architecture.md +0 -103
  117. package/templates/global/docs/commands.md +0 -96
  118. package/templates/global/docs/validation.md +0 -95
  119. package/templates/skills/notion-push.md +0 -116
  120. package/templates/skills/notion-setup.md +0 -199
  121. package/templates/skills/notion-sync.md +0 -290

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.