pi-aia-asf 0.6.0 → 0.6.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/CHANGELOG.md CHANGED
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.6.1] - 2026-08-28
11
+
12
+ ### Removed
13
+
14
+ - **pi-intercom is no longer a dependency** (reversal of the 0.4.0 addition,
15
+ per user decision): removed from `dependencies` in package.json and from the
16
+ runtime dependency check — `/asf` summary is back to the four required
17
+ packages (pi-vigilant, pi-smart-web-search, pi-smart-fetch, pi-aia-browser).
18
+ ASF works fully without it; intercom is documented as an **optional** tool
19
+ (`pi install npm:pi-intercom`) in the README, 06d-delegation.md, and the
20
+ SKILL.md delegation note. Rationale: a hard dependency broke the workspace
21
+ installer's `--skip=pi-intercom` semantics (npm pulled it back in via
22
+ pi-aia-asf), and delegation is a nice-to-have, not a requirement.
23
+
10
24
  ## [0.6.0] - 2026-08-28
11
25
 
12
26
  ### Added
package/README.md CHANGED
@@ -41,9 +41,8 @@ You can also force/start a session explicitly:
41
41
  | **pi-smart-web-search** | `web_search` | `pi install npm:pi-smart-web-search` |
42
42
  | **pi-smart-fetch** | `web_fetch`, `batch_web_fetch` | `pi install npm:pi-smart-fetch` |
43
43
  | **pi-aia-browser** | `browser_init`, `browser_navigate`, … (Playwright + Chromium, auto-installed) | `pi install npm:pi-aia-browser` |
44
- | **pi-intercom** | `intercom` — message other live pi sessions directly (delegation, cross-session verification) | `pi install npm:pi-intercom` |
45
44
 
46
- `pi-intercom` is also declared in `dependencies` in `package.json`, so `npm install` of this package pulls it in. It is intentionally **not bundled** into the tarball: bundling it would conflict with a top-level `pi install npm:pi-intercom` (tool name collision), so the tool must be installed at top level to register.
45
+ **Optional:** `pi-intercom` (`intercom` — message other live pi sessions directly) is **not** a dependency; ASF works without it. Install it only if you want delegation between sessions: `pi install npm:pi-intercom`.
47
46
 
48
47
  The extension warns at startup (and on `/asf` with no args) when any dependency is missing.
49
48
 
package/index.ts CHANGED
@@ -215,12 +215,6 @@ function checkDependencies(): DependencyCheck[] {
215
215
  existsSync(join(gitDir, "github.com", "brunoj", "pi-aia-browser")),
216
216
  hint: "pi install npm:pi-aia-browser (installs Playwright + Chromium)",
217
217
  },
218
- {
219
- name: "pi-intercom (intercom: message other pi sessions)",
220
- package: "pi-intercom",
221
- present: existsSync(join(npmDir, "pi-intercom")),
222
- hint: "pi install npm:pi-intercom",
223
- },
224
218
  ];
225
219
 
226
220
  return checks;
@@ -230,7 +224,7 @@ function dependencySummary(): string {
230
224
  const checks = checkDependencies();
231
225
  const missing = checks.filter((c) => !c.present);
232
226
  if (missing.length === 0) {
233
- return "All ASF dependencies present: pi-vigilant, pi-smart-web-search, pi-smart-fetch, pi-aia-browser, pi-intercom ✓";
227
+ return "All ASF dependencies present: pi-vigilant, pi-smart-web-search, pi-smart-fetch, pi-aia-browser ✓";
234
228
  }
235
229
  return (
236
230
  "⚠️ ASF dependencies missing — install before starting a project:\n" +
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pi-aia-asf",
3
- "version": "0.6.0",
4
- "description": "Ai Applied Agentic Software Factory — codifies the full software development flow: intake, research, spec capture, adversarial analysis, planning with approval gates, test-first implementation, and release. Requires pi-vigilant, pi-smart-web-search, pi-smart-fetch, pi-aia-browser, and pi-intercom.",
3
+ "version": "0.6.1",
4
+ "description": "Ai Applied Agentic Software Factory — codifies the full software development flow: intake, research, spec capture, adversarial analysis, planning with approval gates, test-first implementation, and release. Requires pi-vigilant, pi-smart-web-search, pi-smart-fetch, and pi-aia-browser.",
5
5
  "keywords": [
6
6
  "pi-package",
7
7
  "software-factory",
@@ -48,9 +48,6 @@
48
48
  "@earendil-works/pi-coding-agent": "*",
49
49
  "typebox": "*"
50
50
  },
51
- "dependencies": {
52
- "pi-intercom": "^0.10.1"
53
- },
54
51
  "peerDependenciesMeta": {
55
52
  "@earendil-works/pi-ai": {
56
53
  "optional": false
@@ -187,7 +187,8 @@ Keep the plan **implementation-ready**: any competent engineer (or agent) can ex
187
187
 
188
188
  > **Read `references/06d-delegation.md` before delegating.** Work may be delegated two ways:
189
189
  > **intercom** (message another live pi session that owns relevant context — always `list`
190
- > first, say what you want back, and treat their findings as evidence, not proof), and
190
+ > first, say what you want back, and treat their findings as evidence, not proof; **optional** —
191
+ > only when the user has installed `pi-intercom`, ASF works without it), and
191
192
  > **subagents** (spawn an isolated `pi -p` process when the OUTCOME matters more than the
192
193
  > trace — scoped codebase research, independent parallel fixes, fresh-perspective review).
193
194
  > Two verified hard limits: **never run parallel subagents against the same file** — tested,
@@ -14,6 +14,12 @@ ASF work does not have to happen in one session, in one context window, or one t
14
14
 
15
15
  ## Part 1 — Intercom: passing messages to other sessions
16
16
 
17
+ > **Optional capability.** `pi-intercom` is **not** a dependency of ASF — ASF
18
+ > works fully without it. The `intercom` tool is available only when the user
19
+ > has installed it (`pi install npm:pi-intercom`). When it is present, use it
20
+ > as described below; when it is absent, fall back to asking the user or
21
+ > working in one session.
22
+
17
23
  Other pi sessions on this machine are often working on directly relevant things: the same monorepo, an adjacent service, the package you depend on. **Use intercom to talk to them directly instead of guessing, duplicating their work, or routing everything through the user.**
18
24
 
19
25
  ### When to use intercom