@fiale-plus/pi-rogue-bundle 0.1.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.
- package/README.md +32 -0
- package/package.json +33 -0
- package/src/extension.ts +12 -0
- package/src/index.ts +1 -0
package/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# PiRogue Bundle
|
|
2
|
+
|
|
3
|
+
`@fiale-plus/pi-rogue-bundle` is the prepared umbrella package that stitches together:
|
|
4
|
+
|
|
5
|
+
- `@fiale-plus/pi-rogue-advisor`
|
|
6
|
+
- `@fiale-plus/pi-rogue-orchestration`
|
|
7
|
+
|
|
8
|
+
It is a thin, official surface for local usage when you want one install and both command families together.
|
|
9
|
+
|
|
10
|
+
## Install
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
# from repo root (workspace install)
|
|
14
|
+
npm install
|
|
15
|
+
# and then use workspace packages as needed
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Scope boundaries
|
|
19
|
+
|
|
20
|
+
- **Lab / internal helpers are excluded from this bundle.**
|
|
21
|
+
- `@fiale-plus/pi-rogue-bundle` currently includes only the published logic surfaces.
|
|
22
|
+
- Internal helper packages (`@fiale-plus/pi-rogue-guardrails`, `@fiale-plus/pi-rogue-brain`, `@fiale-plus/pi-rogue-repo-arch`) are maintained separately in the lab section.
|
|
23
|
+
|
|
24
|
+
## Command surface
|
|
25
|
+
|
|
26
|
+
- `/advisor`, `/goal`, `/loop`, `/autoresearch`, `/autoresearch-lab` plus status/config/command paths inherited from the two included packages.
|
|
27
|
+
|
|
28
|
+
## Status
|
|
29
|
+
|
|
30
|
+
- **Published?** In progress (prepared package)
|
|
31
|
+
- **NPM version/downloads:** not yet published (no registry entry yet)
|
|
32
|
+
- **Stability:** public surface; no extra internal helper behavior
|
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fiale-plus/pi-rogue-bundle",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Public PiRogue bundle for advisor and orchestration.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/fiale-plus/pi-rogue"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"pi-package"
|
|
13
|
+
],
|
|
14
|
+
"main": "./src/index.ts",
|
|
15
|
+
"exports": {
|
|
16
|
+
".": "./src/index.ts"
|
|
17
|
+
},
|
|
18
|
+
"pi": {
|
|
19
|
+
"extensions": [
|
|
20
|
+
"./src/extension.ts"
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
"peerDependencies": {
|
|
24
|
+
"@earendil-works/pi-coding-agent": "^0.74.0"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@fiale-plus/pi-rogue-advisor": "^0.1.0",
|
|
28
|
+
"@fiale-plus/pi-rogue-orchestration": "^0.1.0"
|
|
29
|
+
},
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"access": "public"
|
|
32
|
+
}
|
|
33
|
+
}
|
package/src/extension.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
|
|
2
|
+
import { registerAdvisor } from "@fiale-plus/pi-rogue-advisor";
|
|
3
|
+
import { registerOrchestration } from "@fiale-plus/pi-rogue-orchestration";
|
|
4
|
+
|
|
5
|
+
export function registerBundle(pi: ExtensionAPI): void {
|
|
6
|
+
registerAdvisor(pi);
|
|
7
|
+
registerOrchestration(pi);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export default function bundleExtension(pi: ExtensionAPI): void {
|
|
11
|
+
registerBundle(pi);
|
|
12
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default, registerBundle } from "./extension.js";
|