loopctl-mcp-server 2.56.0 → 2.57.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/README.md +1 -1
- package/index.js +11 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -221,7 +221,7 @@ Epic 39 Repo Coordination Bus — a lightweight, tenant-isolated channel for age
|
|
|
221
221
|
| `get_cost_summary` | orch | Get cost/token usage summary for a project, optionally broken down by `agent`, `epic`, or `model`. |
|
|
222
222
|
| `get_story_token_usage` | orch | Get all token usage records for a single story. |
|
|
223
223
|
| `get_cost_anomalies` | orch | Get cost anomaly alerts — stories or agents exceeding expected budgets. Optionally filter by project. |
|
|
224
|
-
| `get_ingestion_anomalies` | orch | Get ingestion-health anomalies — capture_silence (a source_type stopped producing articles)
|
|
224
|
+
| `get_ingestion_anomalies` | orch | Get ingestion-health anomalies — capture_silence (a source_type stopped producing articles), high_reject_rate (writes rejected at high rate, persisting no article row), and sweep_stalled (the 30-day channel-post retention sweep is no longer enforcing retention, under the reserved source_type `channel_post_sweep`). Check whether knowledge capture is still landing AND being accepted, and whether coordination-bus retention is still enforced. |
|
|
225
225
|
| `set_token_budget` | orch | Set a token budget (in millicents) for a project, epic, story, or agent scope. Requires orchestrator role. |
|
|
226
226
|
|
|
227
227
|
### Knowledge Wiki Tools (agent key)
|
package/index.js
CHANGED
|
@@ -3375,9 +3375,13 @@ const TOOLS = [
|
|
|
3375
3375
|
name: "get_ingestion_anomalies",
|
|
3376
3376
|
description:
|
|
3377
3377
|
"Get ingestion-health anomalies — capture_silence (a source_type that was producing " +
|
|
3378
|
-
"articles has gone silent)
|
|
3379
|
-
"rate — 409 title_conflict / validation drops that persist no article row)
|
|
3380
|
-
"
|
|
3378
|
+
"articles has gone silent), high_reject_rate (writes attempted but rejected at high " +
|
|
3379
|
+
"rate — 409 title_conflict / validation drops that persist no article row), and " +
|
|
3380
|
+
"sweep_stalled (the 30-day channel-post retention sweep is no longer enforcing " +
|
|
3381
|
+
"retention for this tenant — expired coordination-bus posts are still present well " +
|
|
3382
|
+
"past their expires_at; recorded under the reserved source_type channel_post_sweep). " +
|
|
3383
|
+
"Use to check whether knowledge capture is still landing AND being accepted, and " +
|
|
3384
|
+
"whether coordination-bus retention is still being enforced. Paginated (page/page_size); " +
|
|
3381
3385
|
"advance `page` to enumerate all. Filter by source_type, anomaly_type, resolved status, or " +
|
|
3382
3386
|
"include archived.",
|
|
3383
3387
|
inputSchema: {
|
|
@@ -3391,10 +3395,11 @@ const TOOLS = [
|
|
|
3391
3395
|
type: "string",
|
|
3392
3396
|
// Keep in sync with Loopctl.Knowledge.IngestionAnomaly @anomaly_types (the
|
|
3393
3397
|
// server-side Ecto.Enum + the ingestion_anomalies_anomaly_type_check DB CHECK).
|
|
3394
|
-
enum: ["capture_silence", "high_reject_rate"],
|
|
3398
|
+
enum: ["capture_silence", "high_reject_rate", "sweep_stalled"],
|
|
3395
3399
|
description:
|
|
3396
|
-
'Optional: filter by anomaly type — "capture_silence" (writes stopped)
|
|
3397
|
-
'"high_reject_rate" (writes rejected at high rate)
|
|
3400
|
+
'Optional: filter by anomaly type — "capture_silence" (writes stopped), ' +
|
|
3401
|
+
'"high_reject_rate" (writes rejected at high rate), or "sweep_stalled" ' +
|
|
3402
|
+
'(the channel-post retention sweep is not enforcing the 30-day window).',
|
|
3398
3403
|
},
|
|
3399
3404
|
resolved: {
|
|
3400
3405
|
type: "string",
|