@gotgenes/pi-subagents 1.0.0 → 1.0.1

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 (60) hide show
  1. package/AGENTS.md +4 -82
  2. package/CHANGELOG.md +21 -0
  3. package/README.md +18 -4
  4. package/docs/architecture/architecture.md +391 -0
  5. package/docs/decisions/0001-deferred-patches.md +8 -12
  6. package/package.json +12 -17
  7. package/.markdownlint-cli2.yaml +0 -19
  8. package/.release-please-manifest.json +0 -3
  9. package/dist/agent-manager.d.ts +0 -108
  10. package/dist/agent-manager.js +0 -390
  11. package/dist/agent-runner.d.ts +0 -93
  12. package/dist/agent-runner.js +0 -428
  13. package/dist/agent-types.d.ts +0 -48
  14. package/dist/agent-types.js +0 -136
  15. package/dist/context.d.ts +0 -12
  16. package/dist/context.js +0 -56
  17. package/dist/cross-extension-rpc.d.ts +0 -46
  18. package/dist/cross-extension-rpc.js +0 -54
  19. package/dist/custom-agents.d.ts +0 -14
  20. package/dist/custom-agents.js +0 -127
  21. package/dist/default-agents.d.ts +0 -7
  22. package/dist/default-agents.js +0 -119
  23. package/dist/env.d.ts +0 -6
  24. package/dist/env.js +0 -28
  25. package/dist/group-join.d.ts +0 -32
  26. package/dist/group-join.js +0 -116
  27. package/dist/index.d.ts +0 -13
  28. package/dist/index.js +0 -1731
  29. package/dist/invocation-config.d.ts +0 -22
  30. package/dist/invocation-config.js +0 -15
  31. package/dist/memory.d.ts +0 -49
  32. package/dist/memory.js +0 -151
  33. package/dist/model-resolver.d.ts +0 -19
  34. package/dist/model-resolver.js +0 -62
  35. package/dist/output-file.d.ts +0 -24
  36. package/dist/output-file.js +0 -86
  37. package/dist/prompts.d.ts +0 -29
  38. package/dist/prompts.js +0 -72
  39. package/dist/schedule-store.d.ts +0 -36
  40. package/dist/schedule-store.js +0 -144
  41. package/dist/schedule.d.ts +0 -109
  42. package/dist/schedule.js +0 -338
  43. package/dist/settings.d.ts +0 -66
  44. package/dist/settings.js +0 -130
  45. package/dist/skill-loader.d.ts +0 -24
  46. package/dist/skill-loader.js +0 -93
  47. package/dist/types.d.ts +0 -164
  48. package/dist/types.js +0 -5
  49. package/dist/ui/agent-widget.d.ts +0 -134
  50. package/dist/ui/agent-widget.js +0 -451
  51. package/dist/ui/conversation-viewer.d.ts +0 -35
  52. package/dist/ui/conversation-viewer.js +0 -252
  53. package/dist/ui/schedule-menu.d.ts +0 -16
  54. package/dist/ui/schedule-menu.js +0 -95
  55. package/dist/usage.d.ts +0 -50
  56. package/dist/usage.js +0 -49
  57. package/dist/worktree.d.ts +0 -36
  58. package/dist/worktree.js +0 -139
  59. package/prek.toml +0 -24
  60. 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
- }