Skip to content

Commit 6fc9d95

Browse files
ninihen1claude
andcommitted
fix: replace all envId placeholders with <environmentId> for clarity
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8d6b4eb commit 6fc9d95

8 files changed

Lines changed: 14 additions & 14 deletions

File tree

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ results = mcp("list_store_flows",
7979
# list_store_flows returns a direct array (no wrapper object)
8080
if len(results) > 0:
8181
# Flow exists — modify rather than create
82-
# id format is "envId.flowId" — split to get the flow UUID
82+
# id format is "<environmentId>.<flowId>" — split to get the flow UUID
8383
FLOW_ID = results[0]["id"].split(".", 1)[1]
8484
print(f"Existing flow: {FLOW_ID}")
8585
defn = mcp("get_live_flow", environmentName=ENV, flowName=FLOW_ID)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ the `flowstudio-power-automate-monitoring` skill.
3939

4040
## Critical: How to Extract Flow IDs
4141

42-
`list_store_flows` returns `id` in format `envId.flowId`. **You must split
42+
`list_store_flows` returns `id` in format `<environmentId>.<flowId>`. **You must split
4343
on the first `.`** to get `environmentName` and `flowName` for all other tools:
4444

4545
```

plugins/flowstudio-power-automate/skills/flowstudio-power-automate-mcp/references/tool-reference.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,15 +138,15 @@ Response: **direct array** (no wrapper).
138138
]
139139
```
140140

141-
> **`id` format**: `envId.flowId` --- split on the first `.` to extract the flow UUID:
141+
> **`id` format**: `<environmentId>.<flowId>` --- split on the first `.` to extract the flow UUID:
142142
> `flow_id = item["id"].split(".", 1)[1]`
143143
144144
### `get_store_flow`
145145

146146
Response: single flow metadata from cache (selected fields).
147147
```json
148148
{
149-
"id": "envId.flowId",
149+
"id": "<environmentId>.<flowId>",
150150
"displayName": "My Flow",
151151
"state": "Started",
152152
"triggerType": "Recurrence",
@@ -204,7 +204,7 @@ Response:
204204
```json
205205
{
206206
"created": false,
207-
"flowKey": "envId.flowId",
207+
"flowKey": "<environmentId>.<flowId>",
208208
"updated": ["definition", "connectionReferences"],
209209
"displayName": "My Flow",
210210
"state": "Started",

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ Direct array. Can be very large (1500+ items).
254254
```json
255255
[
256256
{
257-
"id": "envId.connectionId",
257+
"id": "<environmentId>.<connectionId>",
258258
"displayName": "user@contoso.com",
259259
"createdBy": "{\"id\":\"...\",\"displayName\":\"...\",\"email\":\"...\"}",
260260
"environmentName": "...",
@@ -300,7 +300,7 @@ Direct array.
300300
```json
301301
[
302302
{
303-
"id": "envId.appId",
303+
"id": "<environmentId>.<appId>",
304304
"displayName": "My App",
305305
"environmentName": "...",
306306
"ownerId": "09dbe02f-...",

skills/flowstudio-power-automate-build/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ results = mcp("list_store_flows",
7979
# list_store_flows returns a direct array (no wrapper object)
8080
if len(results) > 0:
8181
# Flow exists — modify rather than create
82-
# id format is "envId.flowId" — split to get the flow UUID
82+
# id format is "<environmentId>.<flowId>" — split to get the flow UUID
8383
FLOW_ID = results[0]["id"].split(".", 1)[1]
8484
print(f"Existing flow: {FLOW_ID}")
8585
defn = mcp("get_live_flow", environmentName=ENV, flowName=FLOW_ID)

skills/flowstudio-power-automate-governance/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ the `flowstudio-power-automate-monitoring` skill.
3939

4040
## Critical: How to Extract Flow IDs
4141

42-
`list_store_flows` returns `id` in format `envId.flowId`. **You must split
42+
`list_store_flows` returns `id` in format `<environmentId>.<flowId>`. **You must split
4343
on the first `.`** to get `environmentName` and `flowName` for all other tools:
4444

4545
```

skills/flowstudio-power-automate-mcp/references/tool-reference.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,15 +138,15 @@ Response: **direct array** (no wrapper).
138138
]
139139
```
140140

141-
> **`id` format**: `envId.flowId` --- split on the first `.` to extract the flow UUID:
141+
> **`id` format**: `<environmentId>.<flowId>` --- split on the first `.` to extract the flow UUID:
142142
> `flow_id = item["id"].split(".", 1)[1]`
143143
144144
### `get_store_flow`
145145

146146
Response: single flow metadata from cache (selected fields).
147147
```json
148148
{
149-
"id": "envId.flowId",
149+
"id": "<environmentId>.<flowId>",
150150
"displayName": "My Flow",
151151
"state": "Started",
152152
"triggerType": "Recurrence",
@@ -204,7 +204,7 @@ Response:
204204
```json
205205
{
206206
"created": false,
207-
"flowKey": "envId.flowId",
207+
"flowKey": "<environmentId>.<flowId>",
208208
"updated": ["definition", "connectionReferences"],
209209
"displayName": "My Flow",
210210
"state": "Started",

skills/flowstudio-power-automate-monitoring/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ Direct array. Can be very large (1500+ items).
254254
```json
255255
[
256256
{
257-
"id": "envId.connectionId",
257+
"id": "<environmentId>.<connectionId>",
258258
"displayName": "user@contoso.com",
259259
"createdBy": "{\"id\":\"...\",\"displayName\":\"...\",\"email\":\"...\"}",
260260
"environmentName": "...",
@@ -300,7 +300,7 @@ Direct array.
300300
```json
301301
[
302302
{
303-
"id": "envId.appId",
303+
"id": "<environmentId>.<appId>",
304304
"displayName": "My App",
305305
"environmentName": "...",
306306
"ownerId": "09dbe02f-...",

0 commit comments

Comments
 (0)