docs: fix plugin init help text - add missing [namespace] argument (t308)#1191
docs: fix plugin init help text - add missing [namespace] argument (t308)#1191marcusquinn merged 1 commit intomainfrom
Conversation
|
Note Gemini is unable to generate a summary for this pull request due to the file types involved not being currently supported. |
WalkthroughThe plugin init subcommand in Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~8 minutes Possibly related issues
Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches
🧪 Generate unit tests (beta)
No actionable comments were generated in the recent review. 🎉 🧹 Recent nitpick comments
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 |
CodeRabbit finding from PR#763 - help text was missing the third positional argument for the plugin init command. Updated both the command description and the example to include [namespace].
8d82305 to
b8d5622
Compare
🔍 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: Thu Feb 12 02:40:19 UTC 2026 Generated by AI DevOps Framework Code Review Monitoring |
|
Add escalating conflict resolution to rebase_sibling_pr(): 1. Plain rebase (no conflicts) 2. Rebase with -Xtheirs (feature branch wins on conflicts) 3. AI CLI resolution for complex cases (Strategy 3 fallback) Also adds: - resolve_rebase_conflicts() for AI-assisted per-file resolution - Stale worktree cleanup (abort stuck rebases, fix detached HEAD) - Temp worktree creation when no worktree exists (avoids dirty tree) - CONFLICTING added to t298 handler (was only BEHIND/DIRTY) - Phase 7b: periodic retry of merge-conflict-blocked tasks (30min) Tested: resolved 4 blocked PRs (#1171, #1187, #1188, #1191) that were stuck with merge conflicts — all resolved with -Xtheirs.
…1203) Add escalating conflict resolution to rebase_sibling_pr(): 1. Plain rebase (no conflicts) 2. Rebase with -Xtheirs (feature branch wins on conflicts) 3. AI CLI resolution for complex cases (Strategy 3 fallback) Also adds: - resolve_rebase_conflicts() for AI-assisted per-file resolution - Stale worktree cleanup (abort stuck rebases, fix detached HEAD) - Temp worktree creation when no worktree exists (avoids dirty tree) - CONFLICTING added to t298 handler (was only BEHIND/DIRTY) - Phase 7b: periodic retry of merge-conflict-blocked tasks (30min) Tested: resolved 4 blocked PRs (#1171, #1187, #1188, #1191) that were stuck with merge conflicts — all resolved with -Xtheirs.



Summary
Fix help text for
aidevops plugin initcommand to include the missing[namespace]argument.Details
CodeRabbit finding from PR#763 identified that the help text was incomplete:
init [dir] [name]toinit [dir] [name] [namespace]aidevops plugin init ./my-plugin my-plugintoaidevops plugin init ./my-plugin my-plugin my-pluginThe help text now matches the actual command signature (lines 2472-2474 in aidevops.sh).
Testing
bash -n aidevops.sh- syntax OKNotes
ShellCheck could not run due to library dependency issue (
libgmp.10.dylibnot found), but bash syntax check passed.Fixes: t308
Ref #1181
Summary by CodeRabbit
Release Notes
New Features
Documentation