Sync readme
Skill yu-iskw/coding-agent-fabric/.claude/skills/sync-readme
The standard fabric for AI agent resources: Manage, sync, and update across Cursor, Claude Code, and more."
npx -y skills add yu-iskw/coding-agent-fabric --skill sync-readmeAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Synchronize technical sections in README.md and CONTRIBUTING.md with the actual project state.
SKILL.md
2.2 KB, as published. Nobody here has run it
sync-readme
Use this skill to keep the technical documentation (README.md and CONTRIBUTING.md) up-to-date with the codebase.
When to Use
- After adding or renaming packages in the monorepo.
- After adding or modifying root scripts in
package.json. - After adding or changing CLI commands or subcommands.
- After significant architectural changes or package relationship updates.
Workflow
-
Analyze Project State: Directly observe the project to gather the necessary information:
- Layout: List directories in
packages/andpackages/plugins/to see the monorepo structure. - Scripts: Read the root
package.jsonto see available scripts. - Commands: Read CLI command definitions in
packages/cli/src/commands/to identify commands and subcommands.
- Layout: List directories in
-
Locate Sync Markers: Find the following markers in the documentation files:
<!-- SYNC:LAYOUT -->...<!-- /SYNC:LAYOUT --><!-- SYNC:SCRIPTS -->...<!-- /SYNC:SCRIPTS --><!-- SYNC:COMMANDS -->...<!-- /SYNC:COMMANDS --><!-- SYNC:ARCHITECTURE -->...<!-- /SYNC:ARCHITECTURE -->
-
Update Content: Update the content between the markers based on your observations:
- Layout ->
SYNC:LAYOUT(usually inCONTRIBUTING.md): List packages and their descriptions from their respectivepackage.jsonfiles. - Scripts ->
SYNC:SCRIPTS(usually inCONTRIBUTING.md): Format scripts from the rootpackage.jsonas a bulleted list. - Commands ->
SYNC:COMMANDS(usually inREADME.md): Format CLI commands as markdown headings with bash examples. - Architecture ->
SYNC:ARCHITECTURE(usually inCONTRIBUTING.md): Review and update the Mermaid diagram if package relationships or key components have changed.
- Layout ->
-
Preserve Formatting: Ensure that you keep the markers themselves and only update the content between them. Use appropriate markdown blocks (code blocks, lists) that match the existing documentation style.
References
- See references/mapping.md for detailed mapping between metadata and doc sections.