From org-management
Set up and run full org automation including repo cloning, script generation, cron scheduling, and skill execution
npx claudepluginhub seabbs/skills --plugin org-managementThis skill uses the workspace's default tool permissions.
One skill to set up, schedule, and run the full suite of org automation.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Analyzes competition with Porter's Five Forces, Blue Ocean Strategy, and positioning maps to identify differentiation opportunities and market positioning for startups and pitches.
One skill to set up, schedule, and run the full suite of org automation. Handles repo cloning, script generation, cron jobs, and coordinated skill execution.
/org-orchestrate setup <org> — full first-time setup for an org/org-orchestrate cron — install or update cron jobs/org-orchestrate run <org> — run all org skills in the right order/org-orchestrate status — check what's set up and what's missingRun /setup-scripts logic: verify all scripts in ~/.claude/scripts/ exist and are executable.
If any are missing, regenerate them.
For each org in ~/code/, read the CLAUDE.md and check:
# List GitHub repos for an org
gh repo list <org> --limit 100 --json name,description,isArchived
Check current crontab for existing automation entries:
crontab -l 2>/dev/null
Ask the user:
claude or happy?--dangerously-skip-permissions for unattended runsGenerate all helper scripts via /setup-scripts.
For each org, fetch the full list of GitHub repos and present them grouped by status:
=== epinowcast ===
Already cloned (9):
[x] baselinenowcast, epidist, epinowcast, primarycensored, ...
Available to clone (3):
[ ] actions — Reusable GitHub Actions
[ ] baselinenowcast-us-paper — Evaluating baseline nowcasting
[ ] coerceDT — Ingest and check user input
Excluded (from CLAUDE.md):
[-] old-archive-repo — Excluded 2025-01-15
Include all available? [Y/n/select]
For the "select" option, let the user pick individual repos.
Persist decisions in the org's CLAUDE.md:
## Local repos## Excluded repos with date## Excluded repos
| Repo | Reason | Date |
|---|---|---|
| old-archive-repo | Archived, no active work | 2025-01-15 |
| fork-of-something | Not maintained by $GITHUB_HANDLE | 2025-02-14 |
For repos selected but not yet cloned:
gh repo clone <org>/<repo> ~/code/<org>/<repo>
For repos without a Taskfile.yml, offer to copy the template from ~/.claude/templates/Taskfile.yml.
Auto-detect the project type (R package, Julia package, Quarto doc) and set the variables.
Install cron entries.
Use launchd plist on macOS for restart robustness.
All times are overnight to avoid work clashes.
| Job | Schedule | Script/Command |
|---|---|---|
| Bot task poll | */5 * * * * | cron-bot-tasks.sh |
| Nightly automation | 0 1 * * * | cron-schedule.sh |
| Daily summary | 0 8 * * * (8am) | claude --print --prompt "/daily-summary" |
| Weekly plan | 0 9 * * 1 (Mon 9am) | claude --print --prompt "/weekly-plan" |
The bot task poll runs every 5 minutes but only triggers Claude if there are new unprocessed requests (checked via emoji dedup).
Cron jobs on macOS do not survive reboots without launchd.
Create plist files in ~/Library/LaunchAgents/:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "...">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.$GITHUB_HANDLE.bot-tasks-poll</string>
<key>ProgramArguments</key>
<array>
<string>$HOME/.claude/scripts/cron-bot-tasks.sh</string>
</array>
<key>StartInterval</key>
<integer>300</integer>
<key>StandardOutPath</key>
<string>$HOME/.claude/logs/bot-tasks-poll.log</string>
<key>StandardErrorPath</key>
<string>$HOME/.claude/logs/bot-tasks-poll.err</string>
<key>RunAtLoad</key>
<true/>
<key>EnvironmentVariables</key>
<dict>
<key>PATH</key>
<string>/usr/local/bin:/usr/bin:/bin:/opt/homebrew/bin</string>
<key>HOME</key>
<string>$HOME</string>
<key>CODE_DIR</key>
<string>$HOME/code</string>
</dict>
</dict>
</plist>
Load with: launchctl load ~/Library/LaunchAgents/com.$GITHUB_HANDLE.bot-tasks-poll.plist
Unload with: launchctl unload ~/Library/LaunchAgents/com.$GITHUB_HANDLE.bot-tasks-poll.plist
Create similar plists for daily-summary and weekly-plan using StartCalendarInterval.
For orgs without a CLAUDE.md, run /working-on to create one.
When running a full pass, execute in this order to avoid wasted work:
git-pull-all.sh/org-maintenance <org>/org-ci-health <org>/org-standards <org>/org-deps <org> [other-orgs...]/org-issues-tidy <org>/org-issues-do <org>/org-releases <org>/repo-watch <org>/bot-tasks/daily-summaryFor multiple orgs, run steps 2-9 per org, then steps 10-11 once.
Use a team for parallel execution where skills are independent (e.g. different orgs).
After setup or a run:
| Component | Status | Last run | Notes |
|---|
IMPORTANT: If this command is being run as a standalone request, automatically exit after completing all phases successfully.