feat: scaffold aidevops-pro and aidevops-anon plugin repos (t136.5)#792
feat: scaffold aidevops-pro and aidevops-anon plugin repos (t136.5)#792marcusquinn merged 1 commit intomainfrom
Conversation
Created two official plugin repos on GitHub and updated the aidevops framework to reference them: aidevops-pro (https://github.com/marcusquinn/aidevops-pro): - Advanced deployment strategies (blue-green, canary, rolling) - Monitoring and observability (Prometheus/Grafana stack) - Cloud cost optimisation and right-sizing aidevops-anon (https://github.com/marcusquinn/aidevops-anon): - Browser fingerprint profile management - Proxy pool rotation strategies - Session and identity isolation Both repos follow the plugin template conventions with YAML frontmatter, namespaced subagents, and ShellCheck-clean helper scripts. Full workflow verified: plugin add -> deploy -> update -> list -> remove. Updated plugins.md with Official Plugins section and real repo URLs. Updated aidevops.sh CLI examples to use real repo URLs. Decision: Created as private GitHub repos (chose private over public since these are premium/sensitive capabilities — matches existing patterns in plugins.md which references private extension repos).
|
Warning Rate limit exceeded
⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Summary of ChangesHello @marcusquinn, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request introduces the foundational structure for two new official aidevops plugins, Highlights
Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
🔍 Code Quality Report�[0;35m[MONITOR]�[0m Code Review Monitoring Report �[0;34m[INFO]�[0m Latest Quality Status: �[0;34m[INFO]�[0m Recent monitoring activity: 📈 Current Quality Metrics
Generated on: Mon Feb 9 17:40:32 UTC 2026 Generated by AI DevOps Framework Code Review Monitoring |
|
There was a problem hiding this comment.
Code Review
This pull request scaffolds two new private plugin repositories, aidevops-pro and aidevops-anon, and updates the documentation and CLI examples to use the new repository URLs. The changes are straightforward and correctly replace placeholder URLs with the new, real ones. I've suggested a minor improvement to the CLI examples to continue showing both HTTPS and SSH protocols for adding plugins, which can be helpful for users dealing with private repositories.
| echo " aidevops plugin add https://github.com/marcusquinn/aidevops-pro.git --namespace pro" | ||
| echo " aidevops plugin add https://github.com/marcusquinn/aidevops-anon.git --namespace anon" |
There was a problem hiding this comment.
The previous version of the examples showed both HTTPS and SSH protocols for adding plugins. This change makes both examples use HTTPS. While consistent, it might be beneficial to keep showing both protocols as valid ways to add a plugin, especially since developers often use SSH keys for private repositories. This would provide a more comprehensive example for users.
| echo " aidevops plugin add https://github.com/marcusquinn/aidevops-pro.git --namespace pro" | |
| echo " aidevops plugin add https://github.com/marcusquinn/aidevops-anon.git --namespace anon" | |
| echo " aidevops plugin add https://github.com/marcusquinn/aidevops-pro.git --namespace pro" | |
| echo " aidevops plugin add git@github.com:marcusquinn/aidevops-anon.git --namespace anon" |
| echo " aidevops plugin add https://github.com/marcusquinn/aidevops-pro.git --namespace pro" | ||
| echo " aidevops plugin add https://github.com/marcusquinn/aidevops-anon.git --namespace anon" |
There was a problem hiding this comment.
For consistency with the other examples and to provide users with multiple protocol options, consider showing one example with HTTPS and another with SSH. This is particularly helpful for private repositories where SSH keys are commonly used.
| echo " aidevops plugin add https://github.com/marcusquinn/aidevops-pro.git --namespace pro" | |
| echo " aidevops plugin add https://github.com/marcusquinn/aidevops-anon.git --namespace anon" | |
| echo " aidevops plugin add https://github.com/marcusquinn/aidevops-pro.git --namespace pro" | |
| echo " aidevops plugin add git@github.com:marcusquinn/aidevops-anon.git --namespace anon" |



Summary
aidevops-proandaidevops-anonas private GitHub repos with proper plugin structureplugins.mdwith Official Plugins section documenting both reposaidevops.shCLI examples to reference real repo URLs instead of placeholdersWhat was done
New GitHub Repos
aidevops-pro (private):
pro.md— Main agent with command referencepro/advanced-deployment.md— Blue-green, canary, rolling deployment strategiespro/monitoring.md— Prometheus/Grafana observability stackpro/cost-optimisation.md— Cloud spend analysis and right-sizingscripts/pro-{deploy,monitor,cost}-helper.sh— ShellCheck-clean helper stubsaidevops-anon (private):
anon.md— Main agent with command referenceanon/browser-profiles.md— Fingerprint profile creation and managementanon/proxy-rotation.md— Proxy pool and rotation strategiesanon/identity-isolation.md— Session isolation and identity separationscripts/anon-{profile,proxy,session}-helper.sh— ShellCheck-clean helper stubsChanges to this repo
.agents/aidevops/plugins.md— Added Official Plugins section with install instructions and agent tablesaidevops.sh— Updated 4 example URLs fromuser/placeholder tomarcusquinn/real reposVerification
plugin add→ deploy →plugin update→plugin list→plugin remove~/.aidevops/agents/pro/,~/.aidevops/agents/anon/)Notes
Closes #732