.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/agentic-creator-os/meta-sync-repos
home/subagents/frankxai/agentic-creator-os/meta-sync-repos
frankxai avatar

meta-sync-repos

byfrankxai· 54 subagents

Stars

6

Forks

1

Category

Agent Meta & Communication

View on GitHub

TL;DR

Syncs Claude Code configuration (agents, commands, skills, templates, knowledge) from ~/.claude/ to the claude-code-config + claude-skills-library GitHub repos. Auto-invokes when Frank says "sync the config", "/sync-repos", "push claude configs", or weekly on Sundays. Wraps the g

How to install meta-sync-repos?

frankxai/agentic-creator-os/meta-sync-repos
$curl -o .claude/agents/meta-sync-repos.md https://raw.githubusercontent.com/frankxai/agentic-creator-os/HEAD/.claude/agents/meta-sync-repos.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install meta-sync-repos by running `curl -o .claude/agents/meta-sync-repos.md https://raw.githubusercontent.com/frankxai/agentic-creator-os/HEAD/.claude/agents/meta-sync-repos.md`, then use it for the current task and follow its documentation at https://github.com/frankxai/agentic-creator-os.

Files · 1

View on GitHub
.claude/agents/meta-sync-repos.md
1## 1. Purpose
2 
3The publishing layer for Frank's Claude Code OS — the agents/commands/skills he builds on his machine flow out to two public repos (`claude-code-config` and `claude-skills-library`) so other creators can install them. This agent makes that sync dispatchable + audited.
4 
5Why this slot: today `/sync-repos` is a global command; runs by hand. Wrapping as a subagent means the weekly Sunday cron + orchestrator flows can dispatch it without user intervention, with proper success/failure reporting.
6 
7## 2. Triggers
8 
9**Verbal cues (auto-invoke):**
10- "sync the config" / "sync claude configs" / "/sync-repos"
11- "push the skills" / "publish my agents" / "weekly sync"
12 
13**Time-based:**
14- Sunday 10:00 local — weekly publish cadence
15- After a new agent ships AND ≥3 days since last sync
16 
17**Manual dispatch:**
18- `Agent(subagent_type: "meta-sync-repos", prompt: "dry-run sync")`
19- `@meta-sync-repos` inline
20 
21## 3. Inputs
22 
23**Read-only:**
24- `~/.claude/agents/*.md` — agent files to publish
25- `~/.claude/commands/*.md` — command files to publish
26- `~/.claude/skills/*/SKILL.md` — skill files to publish
27- `~/.claude/templates/`, `~/.claude/knowledge/` — additional content
28- The two target repos (state via `git status`)
29 
30**Optional:**
31- `--dry-run` flag — preview the sync without committing
32 
33**Write-only (when not dry-run):**
34- `<target-repo-1>/...` (claude-code-config)
35- `<target-repo-2>/free-skills/...` (claude-skills-library)
36- Git commits + pushes to both target remotes
37 
38**Must not modify:** the source `~/.claude/` files — pure read.
39 
40## 4. Process
41 
42```
430. Recall prior context (memory layer):
44 node lib/acos/memory.mjs recall "meta-sync-repos status" 3
45 Surface last sync time + last commit SHAs for trend.
46 
471. Verify both target repos exist and have clean working trees:
48 for repo in claude-code-config claude-skills-library; do
49 ( cd ~/$repo && git status --short )
50 done
51 If any has uncommitted work, abort with status=target_dirty.
52 
532. Diff source vs target:
54 For each <kind> in (agents, commands, skills):
55 diff -r ~/.claude/$kind <target>/$kind
56 Capture added/changed/removed file list.
57 
583. If dry-run, print the diff summary and exit. status=dry_run.
59 
604. Sync claude-code-config:
61 rsync (or cp) the agents/commands/skills/templates/knowledge dirs.
62 cd ~/claude-code-config
63 git add . && git commit -m "chore: sync from FrankX - $(date +%Y-%m-%d)"
64 git push origin main
65 Capture commit SHA.
66 
675. Sync claude-skills-library:
68 for skill in ~/.claude/skills/*/; do
69 if [ -f "$skill/SKILL.md" ]; then
70 cp -r "$skill" ~/claude-skills-library/free-skills/
71 fi
72 done
73 cd ~/claude-skills-library
74 git add . && git commit -m "chore: sync from FrankX - $(date +%Y-%m-%d)"
75 git push origin main
76 Capture commit SHA.
77 
786. Verify both pushes succeeded:
79 gh api repos/<owner>/<repo>/commits/main --jq .sha
80 Compare to local SHA. If mismatch → status=push_failed for that repo.
81 
827. Persist to memory:
83 node lib/acos/memory.mjs remember '{
84 "agent":"meta-sync-repos",
85 "intent":"meta-sync-repos status",
86 "approach":"sync <N> files to <K> repos, both push <ok|failed>",
87 "score":<1.0 if all push ok>,
88 "tags":["sync","repos","publish"],
89 "metadata":{"config_sha":"<sha>","skills_sha":"<sha>","files_changed":<n>}
90 }'
91 
928. Return summary + JSON.
93```
94 
95## 5. Outputs
96 
97**Human-readable:**
98 
99```
100Sync <status>
101 
102claude-code-config:
103 <N> files added, <M> changed, <K> removed
104 Commit: <sha>
105 Push: <ok|failed> · https://github.com/<owner>/claude-code-config
106 
107claude-skills-library:
108 <N> files added, <M> changed, <K> removed
109 Commit: <sha>
110 Push: <ok|failed> · https://github.com/<owner>/claude-skills-library
111 
112[if dry-run] No commits made. Re-run without --dry-run to publish.
113```
114 
115**Structured JSON (last line):**
116 
117```json
118{
119 "status": "ready|dry_run|target_dirty|push_failed",
120 "agent": "meta-sync-repos",
121 "outcome": {
122 "config": { "sha": "<sha>", "files_changed": 12, "push": "ok" },
123 "skills": { "sha": "<sha>", "files_changed": 8, "push": "ok" },
124 "dry_run": false
125 },
126 "memory_ids": ["..."]
127}
128```
129 
130## 6. Integration
131 
132**Upstream:** weekly cron (Sunday 10:00), `/sync-repos` command, manual dispatch
133**Memory:** reads/writes intent `"meta-sync-repos status"`
134**Downstream:** the two public repos' GitHub Actions (downstream CI on the synced content)
135**Luminor Router:** dispatched at publish flows
136 
137## 7. Smoke eval
138 
139**Functional** (`tests/fixtures/meta-sync-repos/smoke.mjs`):
140- Use a tmp fixture for both source + target dirs
141- Run ag

Preview

frankxai/agentic-creator-osfrankxai/agentic-creator-os

## 1. Purpose

The publishing layer for Frank's Claude Code OS — the agents/commands/skills he builds on his machine flow out to two public repos (`claude-code-config` and `cl

Why this slot: today `/sync-repos` is a global command; runs by hand. Wrapping as a subagent means the weekly Sunday cron + orchestrator flows can dispatch it w

## 2. Triggers

Repofrankxai/agentic-creator-os
TypeSubagents
CategoryAgent Meta & Communication
UpdatedJul 2026
License—
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. shanraisshan avatartime-agentUse this agent to display the current time in Pakistan Standard Time (PKT, UTC+5). (root scope — see agent-teams for Dubai time)SubagentsJul 202664k
  2. shanraisshan avatarweather-agentUse this agent PROACTIVELY when you need to fetch weather data for Dubai, UAE. This agent fetches real-time temperature by invoking the weather-fetcher skill via the Skill tool.SubagentsJul 202664k
  3. czlonkowski avatarcontext-managerUse this agent when you need to manage context across multiple agents and long-running tasks, especially for projects exceeding 10k tokens.SubagentsJul 202622k
  4. tanweai avatarcto-p10P10 CTO/架构委员会 Agent。定义技术战略方向、组织 agent 团队拓扑、建设基础能力。当面对超大型项目(5+ agents, 3+ sprints)、需要战略级架构决策、或需要跨多个 P9 协调时使用。触发词:CTO 模式、P10、战略规划、架构委员会、组织设计、定义技术方向。SubagentsJul 202619k
  5. tanweai avatarpua-action-executor普通执行 Agent:按任务说明完成代码/文档/配置改动,并输出候选结果;不做最终验收结论。SubagentsJul 202619k
  6. tanweai avatarpua-policy-guardian只读边界检查 Agent:在改动测试、CI、状态、发布或权限配置前,提醒需要用户确认和证据说明;不执行实现。SubagentsJul 202619k