intercomm-aimfp 0.4.0 → 0.5.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.
package/README.md CHANGED
@@ -99,46 +99,6 @@ server current — no bundled binaries. It ships:
99
99
  claude --plugin-dir /path/to/intercommAIMFP
100
100
  ```
101
101
 
102
- ### Releasing (versioning + publish)
103
-
104
- Bump every embedded version in one step, then commit and push — CI publishes:
105
-
106
- ```bash
107
- node dev/bump-version.mjs <X.Y.Z> # syncs package.json + .claude-plugin/plugin.json
108
- # + the McpServer version in src/mcp-server.ts,
109
- # resyncs the lockfile, then runs `npm run build`
110
- git commit -am "release X.Y.Z" && git push
111
- ```
112
-
113
- `.github/workflows/publish.yml` publishes `intercomm-aimfp@X.Y.Z` to npm on push to
114
- `main` whenever the version is new (idempotent). It needs the repo secret
115
- `NPM_TOKEN`; see the one-time setup below.
116
-
117
- ### One-time npm + CI setup
118
-
119
- Manual, one-time steps to connect GitHub → npm. After these, `bump → commit →
120
- push` is the whole release.
121
-
122
- 1. **npm account + name.** Have an npm account and `npm login`. The package name
123
- `intercomm-aimfp` must be free or owned by you (currently unpublished).
124
- 2. **First publish by hand.** CI publishes *updates*, but the package must exist
125
- first. Once, from the repo root:
126
- ```bash
127
- npm install && npm run build && npm publish --access public
128
- ```
129
- (`--access public` is required the first time for an unscoped public package.)
130
- 3. **Create an npm token.** npm → Account → Access Tokens → Generate → **Automation**
131
- type (works in CI without 2FA). Copy it.
132
- 4. **Add it to GitHub.** Repo → Settings → Secrets and variables → Actions → New
133
- repository secret → name it **`NPM_TOKEN`**, paste the token.
134
-
135
- That is the *entire* GitHub↔npm connection. There is **no separate "worker" to
136
- create** — the workflow file `.github/workflows/publish.yml` *is* the worker;
137
- GitHub Actions runs it automatically once it is on `main`. (Actions is enabled by
138
- default. The native `better-sqlite3` build is skipped in CI via `--ignore-scripts`;
139
- the published artifact is `dist/` + `system-prompt.md`, and the consumer's
140
- `npx`/`npm install` compiles the native binding.)
141
-
142
102
  ## Usage
143
103
 
144
104
  The master spawns and controls workers itself through InterComm's MCP tools — no shell scripts and no manual tmux setup required. (The `scripts/*.sh` helpers remain as a dev-only fallback; see [Dev scripts](#dev-scripts).)
package/dist/cli.js CHANGED
File without changes
package/dist/mcp-entry.js CHANGED
File without changes
@@ -533,7 +533,7 @@ export const createAndRunServer = async (root) => {
533
533
  // AIMFP uses for its rules) — no per-project CLAUDE.md embedding or paste.
534
534
  const server = new McpServer({
535
535
  name: "intercomm-aimfp",
536
- version: "0.4.0",
536
+ version: "0.5.2",
537
537
  }, {
538
538
  instructions: loadProtocol(),
539
539
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intercomm-aimfp",
3
- "version": "0.4.0",
3
+ "version": "0.5.2",
4
4
  "description": "Local intercommunication system for coordinating multiple Claude Code instances via SQLite",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",
@@ -22,6 +22,11 @@
22
22
  "coordination"
23
23
  ],
24
24
  "license": "MIT",
25
+ "author": "Aryan Duntley",
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git+https://github.com/aryanduntley/InterCommAIMFP.git"
29
+ },
25
30
  "devDependencies": {
26
31
  "@types/better-sqlite3": "^7.6.13",
27
32
  "@types/node": "^25.3.3",