@swarmify/agents-mcp 0.2.7 → 0.2.8

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
@@ -2,7 +2,7 @@
2
2
 
3
3
  Turn any agent into a tech lead. Spawn sub-agents from Claude, Codex, Gemini, or any MCP client.
4
4
 
5
- Homepage: https://swarmify.co
5
+ Homepage: https://swarmify.co/#agents-mcp
6
6
  NPM: https://www.npmjs.com/package/@swarmify/agents-mcp
7
7
  VS Code Extension: [Agents](https://marketplace.visualstudio.com/items?itemName=swarmify.swarm-ext) - full-screen agent terminals in your editor
8
8
 
@@ -1 +1,2 @@
1
+ export {};
1
2
  //# sourceMappingURL=hello-world.d.ts.map
@@ -1,3 +1,3 @@
1
- "use strict";
2
- console.log('hello world');
1
+ import { printHelloWorld } from './hello.js';
2
+ printHelloWorld();
3
3
  //# sourceMappingURL=hello-world.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"hello-world.js","sourceRoot":"","sources":["../src/hello-world.ts"],"names":[],"mappings":";AAAA,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC"}
1
+ {"version":3,"file":"hello-world.js","sourceRoot":"","sources":["../src/hello-world.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AAE7C,eAAe,EAAE,CAAC"}
package/dist/hello.d.ts CHANGED
@@ -1,3 +1,2 @@
1
- export declare const HELLO_MESSAGE = "hello world";
2
1
  export declare function printHelloWorld(): void;
3
2
  //# sourceMappingURL=hello.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"hello.d.ts","sourceRoot":"","sources":["../src/hello.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,aAAa,gBAAgB,CAAC;AAE3C,wBAAgB,eAAe,IAAI,IAAI,CAEtC"}
1
+ {"version":3,"file":"hello.d.ts","sourceRoot":"","sources":["../src/hello.ts"],"names":[],"mappings":"AAEA,wBAAgB,eAAe,IAAI,IAAI,CAEtC"}
package/dist/hello.js CHANGED
@@ -1,7 +1,6 @@
1
1
  import { pathToFileURL } from 'url';
2
- export const HELLO_MESSAGE = 'hello world';
3
2
  export function printHelloWorld() {
4
- console.log(HELLO_MESSAGE);
3
+ console.log('hello world');
5
4
  }
6
5
  const invokedPath = process.argv[1];
7
6
  if (invokedPath) {
package/dist/hello.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"hello.js","sourceRoot":"","sources":["../src/hello.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,KAAK,CAAC;AAEpC,MAAM,CAAC,MAAM,aAAa,GAAG,aAAa,CAAC;AAE3C,MAAM,UAAU,eAAe;IAC7B,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;AAC7B,CAAC;AAED,MAAM,WAAW,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAEpC,IAAI,WAAW,EAAE,CAAC;IAChB,MAAM,cAAc,GAAG,aAAa,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC;IAEvD,IAAI,MAAM,CAAC,IAAI,CAAC,GAAG,KAAK,cAAc,EAAE,CAAC;QACvC,eAAe,EAAE,CAAC;IACpB,CAAC;AACH,CAAC"}
1
+ {"version":3,"file":"hello.js","sourceRoot":"","sources":["../src/hello.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,KAAK,CAAC;AAEpC,MAAM,UAAU,eAAe;IAC7B,OAAO,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;AAC7B,CAAC;AAED,MAAM,WAAW,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAEpC,IAAI,WAAW,EAAE,CAAC;IAChB,MAAM,cAAc,GAAG,aAAa,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC;IAEvD,IAAI,MAAM,CAAC,IAAI,CAAC,GAAG,KAAK,cAAc,EAAE,CAAC;QACvC,eAAe,EAAE,CAAC;IACpB,CAAC;AACH,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swarmify/agents-mcp",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "description": "True multi-agent coding in your IDE. Spawn Claude, Codex, Gemini, and Cursor agents from a single MCP server.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -13,9 +13,10 @@
13
13
  "type": "module",
14
14
  "repository": {
15
15
  "type": "git",
16
- "url": "git+https://github.com/muqsitnawaz/swarmify.git"
16
+ "url": "git+https://github.com/muqsitnawaz/swarmify.git",
17
+ "directory": "agents-mcp"
17
18
  },
18
- "homepage": "https://swarmify.co",
19
+ "homepage": "https://swarmify.co/#agents-mcp",
19
20
  "bugs": {
20
21
  "url": "https://github.com/muqsitnawaz/swarmify/issues"
21
22
  },