-
Notifications
You must be signed in to change notification settings - Fork 1
feat: Phase 5 Agent Zero & Archon Optimization #287
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
Merged
POWERFULMOVES
merged 13 commits into
main
from
feature/phase5-agent-zero-archon-optimization
Dec 8, 2025
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
ea38bfb
feat(agent-zero): add Phase 5 subordinate agent profiles
adf4c2f
feat(archon): add Work Orders database schema for persistent tasks
ac79f62
feat(compose): add Archon Work Orders service and worktree storage
c1c6a5c
feat(tensorzero): add Phase 5 LLM function routing for agents
f16a767
fix(ci): allowlist service-internal migrations for RLS lint
457d200
feat(ci): add hardened runner infrastructure and workflow
ceaa0c0
feat(ci): add Cloudflare Workers hybrid CI/CD orchestration
d831f96
docs(ci): add automation loop documentation and quick-start guides
d5a6dc9
feat(rl): add AgentGym-RL submodule for multi-turn RL training
ca29c9d
feat(rl): add EvoSwarm + AgentGym-RL integration architecture
463e5fe
feat(rl): add NATS contracts and RL trainer subordinate profile
a4b5dcd
fix(ci): add geometry_cgp_views.sql to SQL lint allowlist
2e8367e
fix(ci): disable self-hosted build PR triggers until runners deployed
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
🧩 Analysis chain
🏁 Script executed:
Repository: POWERFULMOVES/PMOVES.AI
Length of output: 1948
🏁 Script executed:
Repository: POWERFULMOVES/PMOVES.AI
Length of output: 1290
🏁 Script executed:
Repository: POWERFULMOVES/PMOVES.AI
Length of output: 25644
🏁 Script executed:
Repository: POWERFULMOVES/PMOVES.AI
Length of output: 5186
🏁 Script executed:
Repository: POWERFULMOVES/PMOVES.AI
Length of output: 1359
🏁 Script executed:
Repository: POWERFULMOVES/PMOVES.AI
Length of output: 2110
🏁 Script executed:
Repository: POWERFULMOVES/PMOVES.AI
Length of output: 2548
🏁 Script executed:
Repository: POWERFULMOVES/PMOVES.AI
Length of output: 263
Allowlisted migrations contain unsafe RLS patterns that violate hardening standards.
Both
2025-12-08_archon_work_orders.sqland2025-12-08_claude_sessions.sqlcontain multiple instances ofUSING (true)that the workflow's linter is designed to catch and reject:USING (true)policies granting blanket read access to authenticated users.USING (true)policies with the same blanket access pattern.The workflow explicitly references
pmoves/docs/SUPABASE_RLS_CHECKLIST.mdas the standard for acceptable policies. That checklist documents hardened patterns usingauth.uid()andauth.role()checks—not blankettrueconditions. These migrations directly violate those standards and are allowlisted to bypass security checks.For critical tables managing autonomous work orders and code execution context, implement the hardening patterns documented in the checklist or provide explicit justification for the security exceptions.