Skip to content

Commit 3479f68

Browse files
ninihen1claude
andcommitted
fix: remove store tool references from debug skill entirely
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 5e4e2c7 commit 3479f68

1 file changed

Lines changed: 0 additions & 29 deletions

File tree

  • plugins/flowstudio-power-automate/skills/flowstudio-power-automate-debug

plugins/flowstudio-power-automate/skills/flowstudio-power-automate-debug/SKILL.md

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -72,35 +72,6 @@ ENV = "<environment-id>" # e.g. Default-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
7272

7373
---
7474

75-
## Optional: Fast-Path Diagnosis via Cached Store
76-
77-
> **Requires** FlowStudio for Teams or MCP Pro+ subscription.
78-
> These are store tools from the `flowstudio-power-automate-monitoring` skill.
79-
> If unavailable, skip to Step 1 below — the live API workflow is
80-
> fully self-contained.
81-
82-
If store tools are available, `get_store_flow_errors` returns per-run
83-
failure data including action names and remediation hints in a single
84-
call — no need to walk through live API steps 2–4.
85-
86-
```python
87-
# Quick failure summary
88-
summary = mcp("get_store_flow_summary", environmentName=ENV, flowName=FLOW_ID)
89-
print(f"Fail rate: {summary['failRate']:.0%} over {summary['totalRuns']} runs")
90-
91-
# Per-run error details (requires monitor=true on the flow)
92-
errors = mcp("get_store_flow_errors", environmentName=ENV, flowName=FLOW_ID)
93-
if errors:
94-
for r in errors[:3]:
95-
print(r["startTime"], "|", r.get("failedActions"), "|", r.get("remediationHint"))
96-
# If errors confirms the failing action → jump to Step 6 (apply fix)
97-
else:
98-
# No cached run data — fall through to live API workflow below
99-
pass
100-
```
101-
102-
---
103-
10475
## Step 1 — Locate the Flow
10576

10677
```python

0 commit comments

Comments
 (0)