@ateam-ai/mcp 0.3.42 → 0.3.43

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/tools.js +30 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ateam-ai/mcp",
3
- "version": "0.3.42",
3
+ "version": "0.3.43",
4
4
  "mcpName": "io.github.ariekogan/ateam-mcp",
5
5
  "description": "A-Team MCP Server — build, validate, and deploy multi-agent solutions from any AI environment",
6
6
  "type": "module",
package/src/tools.js CHANGED
@@ -1656,6 +1656,36 @@ const handlers = {
1656
1656
  deploy: "Activation into controlled runtime on A-Team Core",
1657
1657
  },
1658
1658
  },
1659
+ minimal_authoring: {
1660
+ _important: "READ THIS BEFORE WRITING. Most of what historic A-Team docs describe as required is now AUTO-GENERATED at deploy time. Writing the verbose form is wasted tokens — the platform overwrites your hand-written intents, tools, scenarios, etc. with its generated equivalents.",
1661
+ author_writes_per_skill: [
1662
+ "id, name, version, description",
1663
+ "role.persona (the agent's instructions in prose — this is the irreducible content)",
1664
+ "connectors[] (which MCP connector ids the skill uses)",
1665
+ "policy.guardrails (optional — always[]/never[] rules)",
1666
+ "handoff_when (optional — one-sentence routing trigger; LLM-synthesizes one if you omit it)",
1667
+ ],
1668
+ author_writes_per_solution: [
1669
+ "id, name, description, version",
1670
+ "linked_skills[] (skill ids the solution composes)",
1671
+ "routing_mode: \"auto\" (opt into the auto-generated orchestrator)",
1672
+ "style: \"mobile\" | \"voice\" | etc (Phase 1 channel style cascade)",
1673
+ ],
1674
+ platform_generates_at_deploy: [
1675
+ "skill.tools[] — Phase 2b: fetched from each connector's live tool inventory",
1676
+ "skill.intents — Phase 3: LLM-synthesized from persona + tools",
1677
+ "skill.scenarios — auto from intents",
1678
+ "skill.engine — Phase 4: resolved from preset name or default",
1679
+ "skill.security — Phase 2: tool classifications auto-applied",
1680
+ "skill.access_policy — defaults",
1681
+ "solution orchestrator skill — Phase 6: generated when routing_mode:auto",
1682
+ "solution.handoffs[] — Phase 6: orchestrator → each worker",
1683
+ "solution.ui_plugins[] — Phase 5: MCP introspection (ui.listPlugins + ui.getPlugin)",
1684
+ "Style block prepended to every skill persona — Phase 1",
1685
+ ],
1686
+ replace_rule: "REPLACE wins per-field. Any field you write explicitly overrides the platform-generated equivalent. Delete it to opt back into automation.",
1687
+ read_first: "GET /spec/skill → auto_expand block has the full list and a typical_minimal_skill example. GET /spec/solution → same.",
1688
+ },
1659
1689
  example_solutions: [
1660
1690
  { name: "Fleet Command Center", description: "Live vehicle tracking, route optimization, safety monitoring, governed execution" },
1661
1691
  { name: "Customer Support Operations Team", description: "Multi-role support system with escalation, refund controls, CRM integration" },