@nmzpy/pi-ember-stack 0.1.3 → 0.1.5

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 (25) hide show
  1. package/ATTRIBUTION.md +3 -2
  2. package/README.md +8 -7
  3. package/package.json +1 -1
  4. package/plugins/index.ts +7 -7
  5. package/plugins/pi-compact-tools/index.ts +53 -965
  6. package/plugins/pi-custom-agents/index.ts +923 -0
  7. /package/plugins/{pi-compact-tools → pi-custom-agents}/questionnaire-tool.ts +0 -0
  8. /package/plugins/{subagent → pi-custom-agents/subagent}/LICENSE +0 -0
  9. /package/plugins/{subagent → pi-custom-agents/subagent}/README.md +0 -0
  10. /package/plugins/{subagent → pi-custom-agents/subagent}/agent-format.md +0 -0
  11. /package/plugins/{subagent → pi-custom-agents/subagent}/agents/architect.md +0 -0
  12. /package/plugins/{subagent → pi-custom-agents/subagent}/agents/coder.md +0 -0
  13. /package/plugins/{subagent → pi-custom-agents/subagent}/agents/general-purpose.md +0 -0
  14. /package/plugins/{subagent → pi-custom-agents/subagent}/agents/reviewer.md +0 -0
  15. /package/plugins/{subagent → pi-custom-agents/subagent}/agents/scout.md +0 -0
  16. /package/plugins/{subagent → pi-custom-agents/subagent}/agents/worker.md +0 -0
  17. /package/plugins/{subagent → pi-custom-agents/subagent}/extensions/agents.ts +0 -0
  18. /package/plugins/{subagent → pi-custom-agents/subagent}/extensions/index.ts +0 -0
  19. /package/plugins/{subagent → pi-custom-agents/subagent}/extensions/model.ts +0 -0
  20. /package/plugins/{subagent → pi-custom-agents/subagent}/extensions/package.json +0 -0
  21. /package/plugins/{subagent → pi-custom-agents/subagent}/extensions/render.ts +0 -0
  22. /package/plugins/{subagent → pi-custom-agents/subagent}/extensions/runner.ts +0 -0
  23. /package/plugins/{subagent → pi-custom-agents/subagent}/extensions/service.ts +0 -0
  24. /package/plugins/{subagent → pi-custom-agents/subagent}/extensions/thread-viewer.ts +0 -0
  25. /package/plugins/{subagent → pi-custom-agents/subagent}/extensions/threads.ts +0 -0
package/ATTRIBUTION.md CHANGED
@@ -1,10 +1,11 @@
1
1
  # Attribution
2
2
 
3
- `plugins/subagent/extensions/` and the upstream bundled agent files were vendored
3
+ `plugins/pi-custom-agents/subagent/extensions/` and the upstream bundled agent
4
+ files were vendored
4
5
  from `@bacnh85/pi-subagent` version `0.5.0`.
5
6
 
6
7
  The upstream package declares the MIT license. The vendored subtree retains
7
- that license in `plugins/subagent/LICENSE`, along with the original README, agent
8
+ that license in `plugins/pi-custom-agents/subagent/LICENSE`, along with the original README, agent
8
9
  format documentation, bundled roles, package version, and attribution.
9
10
  Upstream project: <https://github.com/bacnh85/pi-extensions>.
10
11
 
package/README.md CHANGED
@@ -23,15 +23,15 @@ plugins under `plugins/`. Ember projects enable them in `.pi/ember-stack.json`:
23
23
 
24
24
  ```json
25
25
  {
26
- "plugins": ["pi-compact-tools", "subagent", "devin-auth"]
26
+ "plugins": ["pi-compact-tools", "pi-custom-agents", "devin-auth"]
27
27
  }
28
28
  ```
29
29
 
30
30
  Remove a plugin ID to disable it, or use `/stack-plugins` to toggle one from
31
31
  the TUI. Restart pi after changing the list. The available plugins are:
32
32
 
33
- - `pi-compact-tools`: compact edit rendering, modes, questionnaire, and footer.
34
- - `subagent`: bundled subagent tool and agent definitions.
33
+ - `pi-compact-tools`: collapsed native edit rendering.
34
+ - `pi-custom-agents`: questionnaire UI, primary modes, plans, subagent tool, and bundled agent definitions.
35
35
  - `devin-auth`: Devin provider, OAuth, catalog refresh, and streaming.
36
36
 
37
37
  ## Project setup
@@ -39,7 +39,7 @@ the TUI. Restart pi after changing the list. The available plugins are:
39
39
  The Ember repository contains a project-local `.pi/settings.json` entry for:
40
40
 
41
41
  ```json
42
- "npm:@nmzpy/pi-ember-stack@0.1.3"
42
+ "npm:@nmzpy/pi-ember-stack@0.1.5"
43
43
  ```
44
44
 
45
45
  On a new clone, start pi from the project directory. Pi will ask for a
@@ -68,9 +68,10 @@ of this repository.
68
68
 
69
69
  ## Development
70
70
 
71
- The package entrypoint is `plugins/index.ts`. Compact tools and Ember modes are
72
- under `plugins/pi-compact-tools/`, subagents and bundled agents are under `plugins/subagent/`,
73
- and Devin auth is under `plugins/devin-auth/`.
71
+ The package entrypoint is `plugins/index.ts`. Compact tools are under
72
+ `plugins/pi-compact-tools/`, while primary modes, plans, subagents, and bundled
73
+ agents are under `plugins/pi-custom-agents/`. Devin auth is under
74
+ `plugins/devin-auth/`.
74
75
 
75
76
  Run the package typecheck with:
76
77
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nmzpy/pi-ember-stack",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "Ember's configurable pi plugin stack with modes, questionnaire, compact edits, subagents, and Devin auth",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/plugins/index.ts CHANGED
@@ -4,9 +4,9 @@ import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
4
4
 
5
5
  import devinAuthPlugin from "./devin-auth/extensions/index.ts";
6
6
  import piCompactToolsPlugin from "./pi-compact-tools/index.ts";
7
- import subagentPlugin from "./subagent/extensions/index.ts";
7
+ import piCustomAgentsPlugin from "./pi-custom-agents/index.ts";
8
8
 
9
- type PluginId = "pi-compact-tools" | "subagent" | "devin-auth";
9
+ type PluginId = "pi-compact-tools" | "pi-custom-agents" | "devin-auth";
10
10
  type StackPlugin = {
11
11
  id: PluginId;
12
12
  description: string;
@@ -20,20 +20,20 @@ type StackPluginConfig = {
20
20
  const CONFIG_RELATIVE_PATH = path.join(".pi", "ember-stack.json");
21
21
  const DEFAULT_PLUGIN_IDS: readonly PluginId[] = [
22
22
  "pi-compact-tools",
23
- "subagent",
23
+ "pi-custom-agents",
24
24
  "devin-auth",
25
25
  ];
26
26
 
27
27
  const PLUGINS: readonly StackPlugin[] = [
28
28
  {
29
29
  id: "pi-compact-tools",
30
- description: "Compact edit rendering, modes, questionnaire, and footer",
30
+ description: "Collapsed native edit rendering",
31
31
  extension: piCompactToolsPlugin,
32
32
  },
33
33
  {
34
- id: "subagent",
35
- description: "Bundled subagent tool and agent definitions",
36
- extension: subagentPlugin,
34
+ id: "pi-custom-agents",
35
+ description: "Primary modes, plans, subagents, and bundled agent definitions",
36
+ extension: piCustomAgentsPlugin,
37
37
  },
38
38
  {
39
39
  id: "devin-auth",