Install
$ agentstack add skill-agentjido-jido-skills-sync-docs-to-code ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Sync Docs To Code
Purpose
Make documentation match the current codebase and clearly flag conflicts where product intent is unclear.
When To Use
Use this skill for:
- Docs/code consistency audits
- Guide or example refreshes
- Module docs and README consistency
- Release-prep documentation checks
- Fixing stale config, telemetry, workflow, or Mix command references
Use refresh-readme when the task is limited to README.md.
Requirements
- Access to docs, README, guides, examples,
lib/,test/, config, and
workflow files
- Ability to run focused tests or compile checks when docs include executable
examples
Workflow
1. Inventory docs and code surfaces
List documentation and source files:
find README.md docs guides examples lib test config .github/workflows -maxdepth 4 -type f 2>/dev/null
Search for names and commands likely to drift:
rg "mix |config :|Application\\.get_env|telemetry|defmodule|@doc|@moduledoc|use Jido|workflow|release|Hex" README.md docs guides examples lib test config .github/workflows 2>/dev/null
2. Compare docs against code
Check documentation references to:
- Public modules and functions
- Options, config keys, env vars, and defaults
- Mix aliases and setup commands
- Telemetry event names
- Workflows and release commands
- Examples and expected output
- Package names, links, and support status
3. Decide correction direction
Prefer code as source of truth when docs are stale. Prefer docs as intent only when code clearly violates documented behavior and the user asked for code alignment.
If intent is ambiguous, do not silently choose. Flag the conflict with concrete file references and ask or leave a focused note.
4. Update docs
Make docs accurate and minimal:
- Fix stale names, commands, links, and examples
- Remove or qualify unsupported claims
- Mark non-runnable examples as illustrative
- Keep tested examples close to real code
- Preserve docs structure unless it blocks clarity
5. Validate
Run the narrowest relevant validation:
mix test
mix compile --warnings-as-errors
Use repo-specific aliases when documented. For docs-only changes, run checks that prove referenced commands, modules, or examples still exist.
Output Expectations
Report:
- Docs surfaces audited
- Code/docs drift found
- Changes made
- Conflicts left for user decision
- Validation commands run
Guardrails
- Do not change code during this skill unless the user explicitly asks to make
code match docs.
- Do not rewrite docs for style only.
- Do not leave runnable-looking examples that are known not to run.
- Do not update generated docs unless the repo documents that workflow.
- Do not hide unresolved code/docs contradictions.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: agentjido
- Source: agentjido/jido-skills
- License: Apache-2.0
- Homepage: https://agentskills.io
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.