gardening-skills-wiki

gardening-skills-wiki is a skill for Codex from PracticalSwan/agent-skills. It costs 23 tokens per session (2,794 once invoked), scanned A, a copy of Gardening Skills Wiki, MIT.

A maintenance workflow for a skills wiki, a collection of instructions and links used by coding agents. It checks links, names, cross-references, index coverage, and areas where useful skills may be missing.

In plain words
What is it for?
Use it after adding, removing, renaming, or reorganizing skills, and during regular wiki health checks.
Why use it?
It catches broken references and outdated organization before they make skills hard to find or use.

Skill for Codex

Written for Codex: reads ~/.codex or $CODEX_HOME. Also seen: reads .claude/ paths; mentions Claude Code; mentions Codex.

Good fit Use it after adding, removing, renaming, or reorganizing skills, and during regular wiki health checks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/practicalswan/agent-skills/gardening-skills-wiki
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add PracticalSwan/agent-skills --skill gardening-skills-wiki
Clone the repo
git clone --depth 1 https://github.com/PracticalSwan/agent-skills

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for gardening-skills-wiki

README.md
[![agentmods](https://agentmods.dev/badge/skills/practicalswan/agent-skills/gardening-skills-wiki/github.svg)](https://agentmods.dev/skills/practicalswan/agent-skills/gardening-skills-wiki)
Your own site
<a href="https://agentmods.dev/skills/practicalswan/agent-skills/gardening-skills-wiki"><img src="https://agentmods.dev/badge/skills/practicalswan/agent-skills/gardening-skills-wiki/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for gardening-skills-wiki

Your own site · 80×15
<a href="https://agentmods.dev/skills/practicalswan/agent-skills/gardening-skills-wiki"><img src="https://agentmods.dev/badge/skills/practicalswan/agent-skills/gardening-skills-wiki.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,794 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 88% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00023 $0.02794
Opus 5 $0.00012 $0.01397
Sonnet 5 $0.00005 $0.00559
Haiku 4.5 $0.00002 $0.00279

Measured 4d ago against content hash a9b2cab3b4a9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

gardening-skills-wiki scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

The scan reads SKILL.md. This mod also ships 5 executable files (analyze-search-gaps.sh, check-index-coverage.sh, check-links.sh, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

88% identical to Gardening Skills Wiki — 105 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

gardening-skills-wiki/SKILL.md · 420 lines

How it starts

The opening of the file, as written. The whole thing — 420 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Gardening Skills Wiki

Overview

The skills wiki needs regular maintenance to stay healthy: links break, skills get orphaned, naming drifts, INDEX files fall out of sync.

Core principle: Automate health checks to maintain wiki quality without burning tokens on manual inspection.

When to Use

Run gardening after:

  • Adding new skills
  • Removing or renaming skills
  • Reorganizing categories
  • Updating cross-references
  • Suspicious that links are broken

Periodic maintenance:

  • Weekly during active development
  • Monthly during stable periods

Quick Health Check

# Run all checks
~/.claude/garden.sh

# Or run specific checks
~/.claude/check-links.sh
~/.claude/check-naming.sh
~/.claude/check-index-coverage.sh

# Analyze search gaps (what skills are missing)
~/.claude/analyze-search-gaps.sh

The master script runs all checks and provides a health report.

What Gets Checked

1. Link Validation (check-links.sh)

Checks:

  • Backtick-wrapped @ links - backticks disable resolution
  • Relative paths like skills/ or skills/gardening-skills-wiki/~/ - should use skills/ absolute paths
  • All skills/ references resolve to existing files
  • Skills referenced in INDEX files exist
  • Orphaned skills (not in any INDEX)

Fixes:

  • Remove backticks from @ references
  • Convert skills/ and skills/gardening-skills-wiki/~/ relative paths to skills/ absolute paths
  • Update broken skills/ references to correct paths
  • Add orphaned skills to their category INDEX
  • Remove references to deleted skills

2. Naming Consistency (check-naming.sh)

Checks:

  • Directory names are kebab-case
  • No uppercase or underscores in directory names
  • Frontmatter fields present (name, description, when_to_use, version, type)
  • Skill names use active voice (not "How to...")
  • Empty directories

Fixes:

  • Rename directories to kebab-case
  • Add missing frontmatter fields
  • Remove empty directories
  • Rephrase names to active voice

3. INDEX Coverage (check-index-coverage.sh)

Read the full file on GitHub · 420 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago Changed a9b2cab3b4a9
  2. 5d ago Changed 1748fcefbfde
  3. 8d ago First seen · 420 lines · 23 tokens per session scan A 5a35ea8868ac

Subscribe to this mod's changes

gardening-skills-wiki is a skill published in the GitHub repository PracticalSwan/agent-skills (14 stars, last pushed 4d ago), licensed MIT. It adds 23 tokens to every session and 2,794 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 88% identical to Gardening Skills Wiki, differing in 105 lines, and is treated as a copy.

Related

Other skills, from other repositories

flashcard-generator

Generate educational flashcards from topics, documents, notes, or study materials. Produces structured JSON data and can create polished Tailwind CSS HTML flashcard review pages with interactive card flipping, progress, tags, and difficulty labels.

mingchen666/Reviva · 49 tokens

manim-animation-maker

Create educational explainer videos with a Manim plus FFmpeg workflow. Use when the user asks for Manim animation, math/physics/geometry/algorithm visualization, formula derivation, concept explainer video, scene planning, MP4 rendering, preview frames, or video quality checks.

mingchen666/Reviva · 62 tokens

knowledge-organize

A tool for turning books, lecture notes, slides, and other documents into organised knowledge summaries. It can produce outlines, key points, knowledge maps, checklists, and mind maps.

mingchen666/Reviva · 135 tokens

bili-note

A tool for turning already registered and parsed Bilibili videos or Bilibili posts into Markdown learning notes linked to supporting evidence. Bilibili is a Chinese video and content-sharing platform.

mingchen666/Reviva · 122 tokens

worksheet-skill

A resource for creating classroom worksheets and other printable learning materials.

mingchen666/Reviva · 113 tokens

skill-review

Audit and maintain the joelclaw skill inventory. Use when checking skill health, fixing broken symlinks, finding stale skills, or running the skill garden. Triggers: 'skill audit', 'check skills', 'stale skills', 'skill health', 'skill garden', 'broken skill', 'skill review', 'fix skills', 'garden skills', or any task…

joelhooks/joelclaw · 84 tokens