بنقرة واحدة
omcustomcodex-update-external
Update agents from external sources (GitHub, docs, etc.)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Update agents from external sources (GitHub, docs, etc.)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
6-stage structured development cycle with stage-based tool restrictions
Multi-angle release quality verification using parallel expert review teams
Full Self Driving — autonomous release loop that processes all auto-dev-eligible GitHub issues until none remain, by repeatedly running /pipeline auto-dev then /homework.
Invoke and resume YAML-defined pipelines by name — /pipeline auto-dev runs the full release pipeline
Analyze release workflow findings and recommend follow-up actions — execute immediately or register as issues
Auto-detect project context and optimize harness — deactivate unused agents/skills, suggest missing experts, generate project profile
| name | omcustomcodex:update-external |
| description | Update agents from external sources (GitHub, docs, etc.) |
| scope | harness |
| argument-hint | [agent-name] [--check] [--force] |
| disable-model-invocation | false |
| user-invocable | true |
Updates agents, skills, and guides that have external sources (GitHub, official docs, etc.) to their latest versions.
--check, -c Check for updates without applying
--force, -f Force update even if current
--verbose, -v Show detailed changes
fe-vercel-agent:
source: https://github.com/vercel-labs/agent-skills
type: github
react-best-practices:
source: https://github.com/vercel-labs/agent-skills
type: github
web-design-guidelines:
source: https://github.com/vercel-labs/agent-skills
type: github
<skill-name>:
source: <owner/repo>
type: skills-sh
Skills installed via skills-sh-search are tracked with source-type: skills-sh in their frontmatter. Update checks use npx skills check.
golang:
source: https://go.dev/doc/effective_go
type: documentation
python:
source: https://peps.python.org/pep-0008/
type: documentation
0. Self-update oh-my-customcodex package
├── Check npm registry for latest version
├── Compare with current installed version
├── Run "npm install -g oh-my-customcodex@<latest>" if outdated
├── Skip automatically for npx invocations (npx always fetches latest)
└── Failure is non-blocking — continue to Step 1 regardless
1. Identify external resources
├── Scan index.yaml files
├── Find source.type = "external"
└── Collect URLs and versions
2. Check for updates
├── GitHub: Check releases/commits
├── skills-sh: Run "npx skills check"
├── Documentation: Check last-modified
└── Compare with current version
3. Fetch updates
├── Download new content
├── Parse and extract relevant parts
└── Validate content
4. Apply updates
├── Update content files
├── Update version in index.yaml
├── Update last_updated timestamp
└── Run mgr-supplier:audit to validate
Updates are tracked in each resource's index.yaml:
source:
type: external
origin: github
url: https://github.com/vercel-labs/agent-skills
version: "1.2.0"
last_updated: "2026-01-22"
update_history:
- version: "1.0.0"
date: "2026-01-20"
- version: "1.2.0"
date: "2026-01-22"
# skills.sh source
source:
type: external
origin: skills-sh
registry: https://skills.sh
installed_via: "npx skills add <owner/repo>"
last_checked: "2026-02-20"
[mgr-updater:external --check]
Checking for external updates...
Agents:
fe-vercel-agent
Current: v1.0.0
Latest: v1.2.0
Status: UPDATE AVAILABLE
Skills:
react-best-practices
Source: github.com/vercel-labs/agent-skills
Status: UPDATE AVAILABLE (linked to agent)
Guides:
golang
Source: go.dev/doc/effective_go
Last fetched: 2026-01-22
Status: UP TO DATE
Summary:
Updates available: 1 agent, 1 skill
Up to date: 11 guides
Run "mgr-updater:external" to apply updates.
[mgr-updater:external]
Updating external resources...
[1/2] Updating fe-vercel-agent
Fetching from github.com/vercel-labs/agent-skills...
✓ Downloaded v1.2.0
✓ Updated AGENT.md
✓ Updated index.yaml (version: 1.0.0 → 1.2.0)
✓ Updated related skills
[2/2] Validating updates
Running mgr-supplier:audit...
✓ All dependencies valid
Summary:
Updated: 1 agent
Synced: 3 skills
Validated: ✓
All external resources updated successfully.