@ateam-ai/mcp 0.3.53 → 0.3.54
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/package.json +1 -1
- package/src/tools.js +4 -3
package/package.json
CHANGED
package/src/tools.js
CHANGED
|
@@ -131,15 +131,15 @@ export const tools = [
|
|
|
131
131
|
name: "ateam_get_spec",
|
|
132
132
|
core: true,
|
|
133
133
|
description:
|
|
134
|
-
"Get the A-Team specification — schemas, validation rules, system tools, agent guides, and templates. Start here after bootstrap to understand how to build skills and solutions. Use 'section' to get just one part of the skill spec (much smaller than the full spec). Use 'search' to find specific fields or concepts across the spec.",
|
|
134
|
+
"Get the A-Team specification — schemas, validation rules, system tools, agent guides, and templates. Start here after bootstrap to understand how to build skills and solutions. Use 'section' to get just one part of the skill spec (much smaller than the full spec). Use 'search' to find specific fields or concepts across the spec.\n\nWhen designing a persona that orchestrates logic via run_python_script (the Python-as-orchestrator pattern), also fetch topic='python_helpers' — that returns the adas.* helper namespace reference. Skills designed without knowing about adas.* produce 5-10x larger / brittler scripts.",
|
|
135
135
|
inputSchema: {
|
|
136
136
|
type: "object",
|
|
137
137
|
properties: {
|
|
138
138
|
topic: {
|
|
139
139
|
type: "string",
|
|
140
|
-
enum: ["overview", "skill", "solution", "enums", "connector-multi-user"],
|
|
140
|
+
enum: ["overview", "skill", "solution", "enums", "connector-multi-user", "python_helpers"],
|
|
141
141
|
description:
|
|
142
|
-
"What to fetch: 'overview' = API overview + endpoints, 'skill' = full skill spec, 'solution' = full solution spec, 'enums' = all enum values, 'connector-multi-user' = multi-user connector guide",
|
|
142
|
+
"What to fetch: 'overview' = API overview + endpoints, 'skill' = full skill spec, 'solution' = full solution spec, 'enums' = all enum values, 'connector-multi-user' = multi-user connector guide, 'python_helpers' = adas.* helper namespace for run_python_script orchestration (read this when designing personas that read state → call tools → checkpoint → status; without it, scripts hand-roll JSON parsing and tool delegation = 5-10x larger and brittler).",
|
|
143
143
|
},
|
|
144
144
|
section: {
|
|
145
145
|
type: "string",
|
|
@@ -1497,6 +1497,7 @@ const SPEC_PATHS = {
|
|
|
1497
1497
|
solution: "/spec/solution",
|
|
1498
1498
|
enums: "/spec/enums",
|
|
1499
1499
|
"connector-multi-user": "/spec/multi-user-connector",
|
|
1500
|
+
python_helpers: "/spec/python_helpers",
|
|
1500
1501
|
};
|
|
1501
1502
|
|
|
1502
1503
|
const EXAMPLE_PATHS = {
|