@gotgenes/pi-subagents 1.0.0 → 1.0.2

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 (61) hide show
  1. package/AGENTS.md +4 -82
  2. package/CHANGELOG.md +29 -0
  3. package/README.md +18 -4
  4. package/docs/architecture/architecture.md +391 -0
  5. package/docs/decisions/0001-deferred-patches.md +13 -14
  6. package/docs/plans/0051-update-adr-0001-hard-fork.md +74 -0
  7. package/package.json +12 -17
  8. package/.markdownlint-cli2.yaml +0 -19
  9. package/.release-please-manifest.json +0 -3
  10. package/dist/agent-manager.d.ts +0 -108
  11. package/dist/agent-manager.js +0 -390
  12. package/dist/agent-runner.d.ts +0 -93
  13. package/dist/agent-runner.js +0 -428
  14. package/dist/agent-types.d.ts +0 -48
  15. package/dist/agent-types.js +0 -136
  16. package/dist/context.d.ts +0 -12
  17. package/dist/context.js +0 -56
  18. package/dist/cross-extension-rpc.d.ts +0 -46
  19. package/dist/cross-extension-rpc.js +0 -54
  20. package/dist/custom-agents.d.ts +0 -14
  21. package/dist/custom-agents.js +0 -127
  22. package/dist/default-agents.d.ts +0 -7
  23. package/dist/default-agents.js +0 -119
  24. package/dist/env.d.ts +0 -6
  25. package/dist/env.js +0 -28
  26. package/dist/group-join.d.ts +0 -32
  27. package/dist/group-join.js +0 -116
  28. package/dist/index.d.ts +0 -13
  29. package/dist/index.js +0 -1731
  30. package/dist/invocation-config.d.ts +0 -22
  31. package/dist/invocation-config.js +0 -15
  32. package/dist/memory.d.ts +0 -49
  33. package/dist/memory.js +0 -151
  34. package/dist/model-resolver.d.ts +0 -19
  35. package/dist/model-resolver.js +0 -62
  36. package/dist/output-file.d.ts +0 -24
  37. package/dist/output-file.js +0 -86
  38. package/dist/prompts.d.ts +0 -29
  39. package/dist/prompts.js +0 -72
  40. package/dist/schedule-store.d.ts +0 -36
  41. package/dist/schedule-store.js +0 -144
  42. package/dist/schedule.d.ts +0 -109
  43. package/dist/schedule.js +0 -338
  44. package/dist/settings.d.ts +0 -66
  45. package/dist/settings.js +0 -130
  46. package/dist/skill-loader.d.ts +0 -24
  47. package/dist/skill-loader.js +0 -93
  48. package/dist/types.d.ts +0 -164
  49. package/dist/types.js +0 -5
  50. package/dist/ui/agent-widget.d.ts +0 -134
  51. package/dist/ui/agent-widget.js +0 -451
  52. package/dist/ui/conversation-viewer.d.ts +0 -35
  53. package/dist/ui/conversation-viewer.js +0 -252
  54. package/dist/ui/schedule-menu.d.ts +0 -16
  55. package/dist/ui/schedule-menu.js +0 -95
  56. package/dist/usage.d.ts +0 -50
  57. package/dist/usage.js +0 -49
  58. package/dist/worktree.d.ts +0 -36
  59. package/dist/worktree.js +0 -139
  60. package/prek.toml +0 -24
  61. package/release-please-config.json +0 -22
@@ -1,22 +0,0 @@
1
- {
2
- "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3
- "packages": {
4
- ".": {}
5
- },
6
- "include-v-in-tag": true,
7
- "include-component-in-tag": false,
8
- "release-type": "node",
9
- "changelog-sections": [
10
- { "type": "feat", "section": "Features" },
11
- { "type": "fix", "section": "Bug Fixes" },
12
- { "type": "perf", "section": "Performance Improvements" },
13
- { "type": "revert", "section": "Reverts" },
14
- { "type": "docs", "section": "Documentation" },
15
- { "type": "style", "section": "Styles", "hidden": true },
16
- { "type": "chore", "section": "Miscellaneous Chores" },
17
- { "type": "refactor", "section": "Code Refactoring", "hidden": true },
18
- { "type": "test", "section": "Tests", "hidden": true },
19
- { "type": "build", "section": "Build System", "hidden": true },
20
- { "type": "ci", "section": "Continuous Integration", "hidden": true }
21
- ]
22
- }