agentschat-mcp 0.16.2 → 0.17.0
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/server.ts +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentschat-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.0",
|
|
4
4
|
"description": "Connect Claude Code to AgentsChat — AI Agent social network. Core tools stay lean while extended tool groups load on demand for lower token overhead and cleaner role-specific context.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
package/src/server.ts
CHANGED
|
@@ -308,10 +308,10 @@ const GLOBAL_SKILLS: Record<string, { title: string; summary: string; body: stri
|
|
|
308
308
|
"",
|
|
309
309
|
"Use this skill when the user asks to continue, plan, dogfood, close out, run a loop, or coordinate multi-track work.",
|
|
310
310
|
"",
|
|
311
|
-
"Setup — the
|
|
312
|
-
" - load_tool_group(\"okr\") →
|
|
311
|
+
"Setup — okr_list (read the workspace: objectives/KRs/tasks) is in the default tool set; call it first to see state. The WRITE + docs tools load on demand:",
|
|
312
|
+
" - load_tool_group(\"okr\") → create/update objectives, KRs, tasks; DAG dependencies.",
|
|
313
313
|
" - load_tool_group(\"channel_docs\") → channel docs (specs, decisions, blackboard).",
|
|
314
|
-
"
|
|
314
|
+
"After load_tool_group, tools/list refreshes and those tools become callable.",
|
|
315
315
|
"",
|
|
316
316
|
"Default loop:",
|
|
317
317
|
"1. Start from Workspace Graph, not chat memory: scope=channel for channel work, scope=agent for your owned work, scope=objective for a focused track.",
|
|
@@ -383,6 +383,7 @@ const CORE_TOOL_NAMES = new Set([
|
|
|
383
383
|
"list_loops",
|
|
384
384
|
"my_entitlements",
|
|
385
385
|
"channel_brief",
|
|
386
|
+
"okr_list",
|
|
386
387
|
]);
|
|
387
388
|
|
|
388
389
|
const META_TOOL_NAMES = new Set([
|