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.
- package/CHANGELOG.md +183 -0
- package/CLAUDE.md +41 -0
- package/core/__tests__/agentic/memory-system.test.ts +2 -2
- package/core/__tests__/types/fs.test.ts +125 -0
- package/core/agentic/agent-router.ts +16 -4
- package/core/agentic/chain-of-thought.ts +4 -12
- package/core/agentic/command-executor.ts +10 -11
- package/core/agentic/context-builder.ts +24 -10
- package/core/agentic/ground-truth.ts +139 -55
- package/core/agentic/prompt-builder.ts +20 -7
- package/core/agentic/smart-context.ts +1 -1
- package/core/agentic/template-loader.ts +1 -1
- package/core/agentic/tool-registry.ts +4 -2
- package/core/bus/bus.ts +1 -1
- package/core/commands/cleanup.ts +24 -8
- package/core/commands/planning.ts +4 -2
- package/core/commands/setup.ts +4 -4
- package/core/commands/shipping.ts +34 -8
- package/core/commands/snapshots.ts +27 -13
- package/core/context/generator.ts +9 -5
- package/core/domain/agent-generator.ts +1 -1
- package/core/domain/agent-loader.ts +1 -1
- package/core/domain/analyzer.ts +76 -31
- package/core/domain/context-estimator.ts +1 -1
- package/core/domain/snapshot-manager.ts +55 -21
- package/core/domain/task-stack.ts +16 -7
- package/core/infrastructure/author-detector.ts +1 -1
- package/core/infrastructure/claude-agent.ts +12 -8
- package/core/infrastructure/command-installer.ts +42 -21
- package/core/infrastructure/editors-config.ts +1 -1
- package/core/infrastructure/path-manager.ts +27 -2
- package/core/infrastructure/permission-manager.ts +1 -1
- package/core/infrastructure/setup.ts +31 -13
- package/core/infrastructure/update-checker.ts +5 -5
- package/core/integrations/jira/client.ts +91 -30
- package/core/integrations/jira/index.ts +29 -5
- package/core/integrations/jira/mcp-adapter.ts +451 -0
- package/core/integrations/linear/client.ts +23 -3
- package/core/plugin/loader.ts +16 -6
- package/core/plugin/registry.ts +16 -6
- package/core/server/routes-extended.ts +13 -6
- package/core/server/routes.ts +15 -5
- package/core/server/sse.ts +4 -3
- package/core/services/agent-service.ts +4 -2
- package/core/services/memory-service.ts +16 -5
- package/core/services/project-service.ts +11 -2
- package/core/services/skill-service.ts +4 -3
- package/core/session/compaction.ts +4 -5
- package/core/session/metrics.ts +11 -4
- package/core/session/task-session-manager.ts +27 -9
- package/core/storage/storage-manager.ts +12 -5
- package/core/storage/storage.ts +26 -10
- package/core/sync/auth-config.ts +2 -2
- package/core/sync/oauth-handler.ts +1 -1
- package/core/sync/sync-client.ts +4 -2
- package/core/sync/sync-manager.ts +1 -1
- package/core/types/agentic.ts +8 -18
- package/core/types/config.ts +1 -1
- package/core/types/index.ts +3 -2
- package/core/types/integrations.ts +4 -48
- package/core/types/storage.ts +0 -8
- package/core/types/task.ts +0 -4
- package/core/utils/file-helper.ts +10 -4
- package/core/utils/jsonl-helper.ts +4 -4
- package/core/utils/keychain.ts +130 -0
- package/core/utils/logger.ts +27 -25
- package/core/utils/runtime.ts +1 -1
- package/core/utils/session-helper.ts +4 -4
- package/core/utils/version.ts +1 -1
- package/package.json +1 -1
- package/packages/shared/src/utils.ts +1 -1
- package/scripts/postinstall.js +26 -2
- package/templates/agentic/orchestrator.md +303 -0
- package/templates/commands/bug.md +2 -0
- package/templates/commands/enrich.md +601 -195
- package/templates/commands/github.md +287 -0
- package/templates/commands/init.md +45 -26
- package/templates/commands/jira.md +198 -258
- package/templates/commands/linear.md +186 -172
- package/templates/commands/monday.md +232 -0
- package/templates/commands/p.md +57 -10
- package/templates/commands/setup.md +4 -1
- package/templates/commands/sync.md +133 -97
- package/templates/commands/task.md +12 -0
- package/templates/config/skill-mappings.json +95 -63
- package/templates/mcp-config.json +42 -39
- package/core/integrations/notion/client.ts +0 -413
- package/core/integrations/notion/index.ts +0 -46
- package/core/integrations/notion/setup.ts +0 -235
- package/core/integrations/notion/sync.ts +0 -818
- package/core/integrations/notion/templates.ts +0 -246
- package/core/plugin/builtin/notion.ts +0 -178
- package/dist/bin/prjct.mjs +0 -13581
- package/dist/core/infrastructure/command-installer.js +0 -473
- package/dist/core/infrastructure/editors-config.js +0 -157
- package/dist/core/infrastructure/setup.js +0 -893
- package/dist/core/utils/version.js +0 -142
- package/packages/shared/.turbo/turbo-build.log +0 -14
- package/packages/shared/dist/index.d.ts +0 -10
- package/packages/shared/dist/index.d.ts.map +0 -1
- package/packages/shared/dist/index.js +0 -4196
- package/packages/shared/dist/schemas.d.ts +0 -408
- package/packages/shared/dist/schemas.d.ts.map +0 -1
- package/packages/shared/dist/types.d.ts +0 -144
- package/packages/shared/dist/types.d.ts.map +0 -1
- package/packages/shared/dist/unified.d.ts +0 -139
- package/packages/shared/dist/unified.d.ts.map +0 -1
- package/packages/shared/dist/utils.d.ts +0 -60
- package/packages/shared/dist/utils.d.ts.map +0 -1
- package/templates/commands/ask.md +0 -128
- package/templates/commands/dashboard.md +0 -686
- package/templates/commands/feature.md +0 -46
- package/templates/commands/now.md +0 -53
- package/templates/commands/suggest.md +0 -116
- package/templates/global/docs/agents.md +0 -88
- package/templates/global/docs/architecture.md +0 -103
- package/templates/global/docs/commands.md +0 -96
- package/templates/global/docs/validation.md +0 -95
- package/templates/skills/notion-push.md +0 -116
- package/templates/skills/notion-setup.md +0 -199
- 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.