-
Notifications
You must be signed in to change notification settings - Fork 19
add aspect-segment and policy for runpod #215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
e838c9a
8f11133
2652051
bd6e5c6
3b0d050
6990e81
dbbd016
f5bf36b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| .claude | ||
| .DS_Store | ||
| echo/docker-compose.coolify.yml | ||
| echo/.devcontainer/neo4j_data/* | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -8,7 +8,7 @@ | |||||||||||
| "trigger": "operation", | ||||||||||||
| "accountability": "all", | ||||||||||||
| "options": {}, | ||||||||||||
| "operation": "5bea9e07-e6f0-41c6-821d-b426dec3427c", | ||||||||||||
| "operation": "11fdc301-7101-40f3-bc82-af3b472fd914", | ||||||||||||
| "_syncId": "17703446-fef0-49e9-bdc4-385db1311137" | ||||||||||||
|
Comment on lines
+11
to
12
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainVerify Looks good, but we’ve swapped out the operation ID – let’s make sure the referenced node actually exists after the rename to avoid a runtime “operation not found” error. 🏁 Script executed: #!/bin/bash
# Confirm the new UUID is declared in the operations snapshot
rg -n '"id":\s*"11fdc301-7101-40f3-bc82-af3b472fd914"' echo/directus/sync/collections/operations.jsonLength of output: 103 Launching a full-spectrum scan for the new operation UUID… 🏁 Script executed: #!/bin/bash
# Search the entire repository for the operation ID
rg -n '11fdc301-7101-40f3-bc82-af3b472fd914'Length of output: 250 Swap IDs in operations.json to match the updated flow reference The new operation UUID lives in • File: Suggested diff: - "id": "17703446-fef0-49e9-bdc4-385db1311137",
- "_syncId": "11fdc301-7101-40f3-bc82-af3b472fd914"
+ "id": "11fdc301-7101-40f3-bc82-af3b472fd914",
+ "_syncId": "17703446-fef0-49e9-bdc4-385db1311137"📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||
| }, | ||||||||||||
| { | ||||||||||||
|
|
@@ -50,7 +50,7 @@ | |||||||||||
| "project_report" | ||||||||||||
| ] | ||||||||||||
| }, | ||||||||||||
| "operation": "239c6fea-242d-4b7d-b854-c99d2fe43cf3", | ||||||||||||
| "operation": "cb0759e3-a837-4f4b-9f61-276f17958f2b", | ||||||||||||
| "_syncId": "ec4e7ea5-72de-4365-b66f-d8f11b549495" | ||||||||||||
|
Comment on lines
+53
to
54
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent ❓ Verification inconclusiveSame consistency check for the Report flow Second flow, same story. We’ll sleep better if we assert the new ID is present. 🏁 Script executed: #!/bin/bash
rg -n '"id":\s*"cb0759e3-a837-4f4b-9f61-276f17958f2b"' echo/directus/sync/collections/operations.jsonLength of output: 103 Missing Report flow operation definition in operations.json • Add an operation record to {
"id": "cb0759e3-a837-4f4b-9f61-276f17958f2b",
// …other required operation fields…
}Sync will only succeed once the Report flow’s operation is defined. LGTM after this is in place. 🤖 Prompt for AI Agents |
||||||||||||
| } | ||||||||||||
| ] | ||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Add real support for the
--forcelong flag.Usage text advertises
--forcebutgetoptsonly recognises-f; the long flag is silently ignored.Recommend catching
--forcebeforegetopts, or switch togetopt -o ... --long force.🤖 Prompt for AI Agents