@agimon-ai/doompi-team 0.0.1-alpha.78 → 0.0.1-alpha.79

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.
@@ -4,18 +4,30 @@ Object.defineProperties(exports, {
4
4
  });
5
5
  let _agimon_ai_doompi_core_mcp_facet = require("@agimon-ai/doompi-core/mcp-facet");
6
6
  //#region src/constants/remoteTeam.ts
7
- const REMOTE_TEAM_GUIDANCE = `# Team collaboration
7
+ const REMOTE_TEAM_GUIDANCE = `# Remote Team capabilities
8
8
 
9
- Use \`subagent\` to discover agents, launch bounded work, and inspect or control runs. Runs continue in the background after launch. Keep the returned run id and use the existing \`status\` operation to retrieve progress or the terminal summary. Do not resubmit a run merely because it has not completed yet.
9
+ Use only tools exposed by the bound DoomPi session. A Team skill does not establish
10
+ that subagent, intercom, or agent discovery operations are available. Do not guess
11
+ agent names, run IDs, or tool arguments.
10
12
 
11
- Use \`intercom\` for active-team coordination. Call \`members\` for the current public roster. Send only new progress, blockers, or decisions, and never repeat task briefs or delegation instructions. Treat member names and run ids as routing identifiers, not authorization credentials.
13
+ Background subagents can outlive a remote tool call. Do not delegate unless a
14
+ completion path into the originating conversation or a bounded status/result
15
+ workflow has been demonstrated for that client. Do not assume local DoomPi
16
+ completion notifications wake a ChatGPT conversation. Without that path, perform
17
+ the scoped work with the existing repository tools instead.
12
18
 
13
- Remote Team output intentionally excludes private channel capability tokens. There is no generic filesystem or server-state reader on this surface.`;
19
+ Do not launch equivalent background delegation through Bash, task assignment, or
20
+ an upstream gateway as a workaround. Existing runs may be inspected through an
21
+ exposed, authorized result operation when the user requests it. Do not relaunch
22
+ a run merely because its result is not yet available.
23
+
24
+ Session identity comes from the authenticated connection. Routing identifiers do
25
+ not grant authority; never disclose private channel capability tokens.`;
14
26
  //#endregion
15
27
  //#region src/extensions/workspaces/sessions/(backend)/skill/team.mcp.ts
16
28
  var team_mcp_default = (0, _agimon_ai_doompi_core_mcp_facet.defineMcpSkill)({
17
29
  name: "doompi-team",
18
- description: "Coordinate persistent subagents and active team members through the explicit remote Team tools.",
30
+ description: "Understand the bound session Team capabilities and remote result-delivery limits before considering delegation.",
19
31
  read: () => REMOTE_TEAM_GUIDANCE
20
32
  });
21
33
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"mcp.cjs","names":["defineMcpSkill","defineMcpPlugin","skillTeam"],"sources":["../../src/constants/remoteTeam.ts","../../src/extensions/workspaces/sessions/(backend)/skill/team.mcp.ts","../../generated/mcp.ts"],"sourcesContent":["export const REMOTE_TEAM_GUIDANCE = `# Team collaboration\n\nUse \\`subagent\\` to discover agents, launch bounded work, and inspect or control runs. Runs continue in the background after launch. Keep the returned run id and use the existing \\`status\\` operation to retrieve progress or the terminal summary. Do not resubmit a run merely because it has not completed yet.\n\nUse \\`intercom\\` for active-team coordination. Call \\`members\\` for the current public roster. Send only new progress, blockers, or decisions, and never repeat task briefs or delegation instructions. Treat member names and run ids as routing identifiers, not authorization credentials.\n\nRemote Team output intentionally excludes private channel capability tokens. There is no generic filesystem or server-state reader on this surface.`;\n","import { defineMcpSkill } from '@agimon-ai/doompi-core/mcp-facet';\n\nimport { REMOTE_TEAM_GUIDANCE } from '../../../../../constants/remoteTeam';\n\nexport default defineMcpSkill({\n name: 'doompi-team',\n description: 'Coordinate persistent subagents and active team members through the explicit remote Team tools.',\n read: () => REMOTE_TEAM_GUIDANCE,\n});\n","// Generated by @agimon-ai/doompi-build. Do not edit by hand.\nimport { defineMcpPlugin, type DoomMcpSessionPlugin } from '@agimon-ai/doompi-core/mcp-facet';\n\nimport skillTeam from '../src/extensions/workspaces/sessions/(backend)/skill/team.mcp';\n\ntype Factory<T, C> = (context: C) => T;\nconst at = <T, C>(value: T | Factory<T, C>, context: C): T =>\n typeof value === 'function' ? (value as Factory<T, C>)(context) : value;\n\nexport const mcp = defineMcpPlugin({\n name: '@agimon-ai/doompi-team',\n session: (context) => ({\n get skills(): DoomMcpSessionPlugin['skills'] { return [at(skillTeam, context)]; },\n }) satisfies DoomMcpSessionPlugin,\n});\n\nexport default mcp;\n"],"mappings":";;;;;;AAAA,MAAa,uBAAuB;;;;;;;;;ACIpC,IAAA,oBAAA,GAAeA,iCAAAA,eAAAA,CAAe;CAC5B,MAAM;CACN,aAAa;CACb,YAAY;AACd,CAAC;;;ACFD,MAAM,MAAY,OAA0B,YAC1C,OAAO,UAAU,aAAc,MAAwB,OAAO,IAAI;AAEpE,MAAa,OAAA,GAAMC,iCAAAA,gBAAAA,CAAgB;CACjC,MAAM;CACN,UAAU,aAAa,EACrB,IAAI,SAAyC;EAAE,OAAO,CAAC,GAAGC,kBAAW,OAAO,CAAC;CAAG,EAClF;AACF,CAAC"}
1
+ {"version":3,"file":"mcp.cjs","names":["defineMcpSkill","defineMcpPlugin","skillTeam"],"sources":["../../src/constants/remoteTeam.ts","../../src/extensions/workspaces/sessions/(backend)/skill/team.mcp.ts","../../generated/mcp.ts"],"sourcesContent":["export const REMOTE_TEAM_GUIDANCE = `# Remote Team capabilities\n\nUse only tools exposed by the bound DoomPi session. A Team skill does not establish\nthat subagent, intercom, or agent discovery operations are available. Do not guess\nagent names, run IDs, or tool arguments.\n\nBackground subagents can outlive a remote tool call. Do not delegate unless a\ncompletion path into the originating conversation or a bounded status/result\nworkflow has been demonstrated for that client. Do not assume local DoomPi\ncompletion notifications wake a ChatGPT conversation. Without that path, perform\nthe scoped work with the existing repository tools instead.\n\nDo not launch equivalent background delegation through Bash, task assignment, or\nan upstream gateway as a workaround. Existing runs may be inspected through an\nexposed, authorized result operation when the user requests it. Do not relaunch\na run merely because its result is not yet available.\n\nSession identity comes from the authenticated connection. Routing identifiers do\nnot grant authority; never disclose private channel capability tokens.`;\n","import { defineMcpSkill } from '@agimon-ai/doompi-core/mcp-facet';\n\nimport { REMOTE_TEAM_GUIDANCE } from '../../../../../constants/remoteTeam';\n\nexport default defineMcpSkill({\n name: 'doompi-team',\n description:\n 'Understand the bound session Team capabilities and remote result-delivery limits before considering delegation.',\n read: () => REMOTE_TEAM_GUIDANCE,\n});\n","// Generated by @agimon-ai/doompi-build. Do not edit by hand.\nimport { defineMcpPlugin, type DoomMcpSessionPlugin } from '@agimon-ai/doompi-core/mcp-facet';\n\nimport skillTeam from '../src/extensions/workspaces/sessions/(backend)/skill/team.mcp';\n\ntype Factory<T, C> = (context: C) => T;\nconst at = <T, C>(value: T | Factory<T, C>, context: C): T =>\n typeof value === 'function' ? (value as Factory<T, C>)(context) : value;\n\nexport const mcp = defineMcpPlugin({\n name: '@agimon-ai/doompi-team',\n session: (context) => ({\n get skills(): DoomMcpSessionPlugin['skills'] { return [at(skillTeam, context)]; },\n }) satisfies DoomMcpSessionPlugin,\n});\n\nexport default mcp;\n"],"mappings":";;;;;;AAAA,MAAa,uBAAuB;;;;;;;;;;;;;;;;;;;;;ACIpC,IAAA,oBAAA,GAAeA,iCAAAA,eAAAA,CAAe;CAC5B,MAAM;CACN,aACE;CACF,YAAY;AACd,CAAC;;;ACHD,MAAM,MAAY,OAA0B,YAC1C,OAAO,UAAU,aAAc,MAAwB,OAAO,IAAI;AAEpE,MAAa,OAAA,GAAMC,iCAAAA,gBAAAA,CAAgB;CACjC,MAAM;CACN,UAAU,aAAa,EACrB,IAAI,SAAyC;EAAE,OAAO,CAAC,GAAGC,kBAAW,OAAO,CAAC;CAAG,EAClF;AACF,CAAC"}
@@ -1,17 +1,29 @@
1
1
  import { defineMcpPlugin, defineMcpSkill } from "@agimon-ai/doompi-core/mcp-facet";
2
2
  //#region src/constants/remoteTeam.ts
3
- const REMOTE_TEAM_GUIDANCE = `# Team collaboration
3
+ const REMOTE_TEAM_GUIDANCE = `# Remote Team capabilities
4
4
 
5
- Use \`subagent\` to discover agents, launch bounded work, and inspect or control runs. Runs continue in the background after launch. Keep the returned run id and use the existing \`status\` operation to retrieve progress or the terminal summary. Do not resubmit a run merely because it has not completed yet.
5
+ Use only tools exposed by the bound DoomPi session. A Team skill does not establish
6
+ that subagent, intercom, or agent discovery operations are available. Do not guess
7
+ agent names, run IDs, or tool arguments.
6
8
 
7
- Use \`intercom\` for active-team coordination. Call \`members\` for the current public roster. Send only new progress, blockers, or decisions, and never repeat task briefs or delegation instructions. Treat member names and run ids as routing identifiers, not authorization credentials.
9
+ Background subagents can outlive a remote tool call. Do not delegate unless a
10
+ completion path into the originating conversation or a bounded status/result
11
+ workflow has been demonstrated for that client. Do not assume local DoomPi
12
+ completion notifications wake a ChatGPT conversation. Without that path, perform
13
+ the scoped work with the existing repository tools instead.
8
14
 
9
- Remote Team output intentionally excludes private channel capability tokens. There is no generic filesystem or server-state reader on this surface.`;
15
+ Do not launch equivalent background delegation through Bash, task assignment, or
16
+ an upstream gateway as a workaround. Existing runs may be inspected through an
17
+ exposed, authorized result operation when the user requests it. Do not relaunch
18
+ a run merely because its result is not yet available.
19
+
20
+ Session identity comes from the authenticated connection. Routing identifiers do
21
+ not grant authority; never disclose private channel capability tokens.`;
10
22
  //#endregion
11
23
  //#region src/extensions/workspaces/sessions/(backend)/skill/team.mcp.ts
12
24
  var team_mcp_default = defineMcpSkill({
13
25
  name: "doompi-team",
14
- description: "Coordinate persistent subagents and active team members through the explicit remote Team tools.",
26
+ description: "Understand the bound session Team capabilities and remote result-delivery limits before considering delegation.",
15
27
  read: () => REMOTE_TEAM_GUIDANCE
16
28
  });
17
29
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"mcp.mjs","names":["skillTeam"],"sources":["../../src/constants/remoteTeam.ts","../../src/extensions/workspaces/sessions/(backend)/skill/team.mcp.ts","../../generated/mcp.ts"],"sourcesContent":["export const REMOTE_TEAM_GUIDANCE = `# Team collaboration\n\nUse \\`subagent\\` to discover agents, launch bounded work, and inspect or control runs. Runs continue in the background after launch. Keep the returned run id and use the existing \\`status\\` operation to retrieve progress or the terminal summary. Do not resubmit a run merely because it has not completed yet.\n\nUse \\`intercom\\` for active-team coordination. Call \\`members\\` for the current public roster. Send only new progress, blockers, or decisions, and never repeat task briefs or delegation instructions. Treat member names and run ids as routing identifiers, not authorization credentials.\n\nRemote Team output intentionally excludes private channel capability tokens. There is no generic filesystem or server-state reader on this surface.`;\n","import { defineMcpSkill } from '@agimon-ai/doompi-core/mcp-facet';\n\nimport { REMOTE_TEAM_GUIDANCE } from '../../../../../constants/remoteTeam';\n\nexport default defineMcpSkill({\n name: 'doompi-team',\n description: 'Coordinate persistent subagents and active team members through the explicit remote Team tools.',\n read: () => REMOTE_TEAM_GUIDANCE,\n});\n","// Generated by @agimon-ai/doompi-build. Do not edit by hand.\nimport { defineMcpPlugin, type DoomMcpSessionPlugin } from '@agimon-ai/doompi-core/mcp-facet';\n\nimport skillTeam from '../src/extensions/workspaces/sessions/(backend)/skill/team.mcp';\n\ntype Factory<T, C> = (context: C) => T;\nconst at = <T, C>(value: T | Factory<T, C>, context: C): T =>\n typeof value === 'function' ? (value as Factory<T, C>)(context) : value;\n\nexport const mcp = defineMcpPlugin({\n name: '@agimon-ai/doompi-team',\n session: (context) => ({\n get skills(): DoomMcpSessionPlugin['skills'] { return [at(skillTeam, context)]; },\n }) satisfies DoomMcpSessionPlugin,\n});\n\nexport default mcp;\n"],"mappings":";;AAAA,MAAa,uBAAuB;;;;;;;;;ACIpC,IAAA,mBAAe,eAAe;CAC5B,MAAM;CACN,aAAa;CACb,YAAY;AACd,CAAC;;;ACFD,MAAM,MAAY,OAA0B,YAC1C,OAAO,UAAU,aAAc,MAAwB,OAAO,IAAI;AAEpE,MAAa,MAAM,gBAAgB;CACjC,MAAM;CACN,UAAU,aAAa,EACrB,IAAI,SAAyC;EAAE,OAAO,CAAC,GAAGA,kBAAW,OAAO,CAAC;CAAG,EAClF;AACF,CAAC"}
1
+ {"version":3,"file":"mcp.mjs","names":["skillTeam"],"sources":["../../src/constants/remoteTeam.ts","../../src/extensions/workspaces/sessions/(backend)/skill/team.mcp.ts","../../generated/mcp.ts"],"sourcesContent":["export const REMOTE_TEAM_GUIDANCE = `# Remote Team capabilities\n\nUse only tools exposed by the bound DoomPi session. A Team skill does not establish\nthat subagent, intercom, or agent discovery operations are available. Do not guess\nagent names, run IDs, or tool arguments.\n\nBackground subagents can outlive a remote tool call. Do not delegate unless a\ncompletion path into the originating conversation or a bounded status/result\nworkflow has been demonstrated for that client. Do not assume local DoomPi\ncompletion notifications wake a ChatGPT conversation. Without that path, perform\nthe scoped work with the existing repository tools instead.\n\nDo not launch equivalent background delegation through Bash, task assignment, or\nan upstream gateway as a workaround. Existing runs may be inspected through an\nexposed, authorized result operation when the user requests it. Do not relaunch\na run merely because its result is not yet available.\n\nSession identity comes from the authenticated connection. Routing identifiers do\nnot grant authority; never disclose private channel capability tokens.`;\n","import { defineMcpSkill } from '@agimon-ai/doompi-core/mcp-facet';\n\nimport { REMOTE_TEAM_GUIDANCE } from '../../../../../constants/remoteTeam';\n\nexport default defineMcpSkill({\n name: 'doompi-team',\n description:\n 'Understand the bound session Team capabilities and remote result-delivery limits before considering delegation.',\n read: () => REMOTE_TEAM_GUIDANCE,\n});\n","// Generated by @agimon-ai/doompi-build. Do not edit by hand.\nimport { defineMcpPlugin, type DoomMcpSessionPlugin } from '@agimon-ai/doompi-core/mcp-facet';\n\nimport skillTeam from '../src/extensions/workspaces/sessions/(backend)/skill/team.mcp';\n\ntype Factory<T, C> = (context: C) => T;\nconst at = <T, C>(value: T | Factory<T, C>, context: C): T =>\n typeof value === 'function' ? (value as Factory<T, C>)(context) : value;\n\nexport const mcp = defineMcpPlugin({\n name: '@agimon-ai/doompi-team',\n session: (context) => ({\n get skills(): DoomMcpSessionPlugin['skills'] { return [at(skillTeam, context)]; },\n }) satisfies DoomMcpSessionPlugin,\n});\n\nexport default mcp;\n"],"mappings":";;AAAA,MAAa,uBAAuB;;;;;;;;;;;;;;;;;;;;;ACIpC,IAAA,mBAAe,eAAe;CAC5B,MAAM;CACN,aACE;CACF,YAAY;AACd,CAAC;;;ACHD,MAAM,MAAY,OAA0B,YAC1C,OAAO,UAAU,aAAc,MAAwB,OAAO,IAAI;AAEpE,MAAa,MAAM,gBAAgB;CACjC,MAAM;CACN,UAAU,aAAa,EACrB,IAAI,SAAyC;EAAE,OAAO,CAAC,GAAGA,kBAAW,OAAO,CAAC;CAAG,EAClF;AACF,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agimon-ai/doompi-team",
3
- "version": "0.0.1-alpha.78",
3
+ "version": "0.0.1-alpha.79",
4
4
  "description": "Asynchronous named subagents, team runs, intercom, and model policy for Pi coding agents.",
5
5
  "keywords": [
6
6
  "agent-team",
@@ -124,20 +124,20 @@
124
124
  "registry": "https://registry.npmjs.org/"
125
125
  },
126
126
  "dependencies": {
127
- "@agimon-ai/doompi-cache": "0.0.1-alpha.44",
128
- "@agimon-ai/doompi-config": "0.0.1-alpha.77",
129
- "@agimon-ai/doompi-core": "0.0.1-alpha.78",
130
- "@agimon-ai/doompi-session": "0.0.1-alpha.2",
131
- "@agimon-ai/doompi-telemetry": "0.0.1-alpha.75",
132
- "@agimon-ai/doompi-ui": "0.0.1-alpha.78",
133
- "@agimon-ai/doompi-web-components": "0.0.1-alpha.36",
134
- "@agimon-ai/doompi-web-security": "0.0.1-alpha.38",
127
+ "@agimon-ai/doompi-cache": "0.0.1-alpha.45",
128
+ "@agimon-ai/doompi-config": "0.0.1-alpha.78",
129
+ "@agimon-ai/doompi-core": "0.0.1-alpha.79",
130
+ "@agimon-ai/doompi-session": "0.0.1-alpha.3",
131
+ "@agimon-ai/doompi-telemetry": "0.0.1-alpha.76",
132
+ "@agimon-ai/doompi-ui": "0.0.1-alpha.79",
133
+ "@agimon-ai/doompi-web-components": "0.0.1-alpha.37",
134
+ "@agimon-ai/doompi-web-security": "0.0.1-alpha.39",
135
135
  "@deepseek-ai/cordis": "4.0.2",
136
136
  "typebox": "1.3.30",
137
137
  "yaml": "2.9.0"
138
138
  },
139
139
  "devDependencies": {
140
- "@agimon-ai/doompi-build": "0.0.1-alpha.7",
140
+ "@agimon-ai/doompi-build": "0.0.1-alpha.8",
141
141
  "@earendil-works/pi-agent-core": "0.86.0",
142
142
  "@earendil-works/pi-ai": "0.86.0",
143
143
  "@earendil-works/pi-coding-agent": "0.86.0",