agentsclimarketplace

Tending the garden

Skill ljf06853/keepfire/skills/tending-the-garden

Use when the user wants to manage their recipe library — list, search, show, delete, improve, export/import recipes, view stats, or change keepfire modes (capture/use/suggest/threshold). Trigger phrases; /garden, "list my recipes", "列出我的配方", "删掉那条配方", "改成 auto 模式".From its SKILL.md

Install
npx -y skills add ljf06853/keepfire --skill tending-the-garden

Assembled 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.

SKILL.md

2.2 KB, 492 tokens by cl100k_base, as published. Nobody here has run it

Tending the Garden

The user's recipe library lives under ~/.keepfire/ (override: KEEPFIRE_HOME). Cards are plain Markdown — one file per recipe under cards/, indexed by index.json (derived, always rebuildable; the Markdown files are the source of truth).

Operations

keepfire list [--intent security] [--stack ts]
keepfire search "keywords" --top 10
keepfire show <id-or-fragment>
keepfire delete <id-or-fragment> --yes      # confirm with the user first
keepfire improve <id> --note "..." --why "signal1|signal2"
keepfire export [file] / keepfire import <file>
keepfire stats
keepfire reindex                            # heal the index after manual edits

Ids accept any unique fragment (show 4zri). No CLI? Read/write the files directly, keeping frontmatter flat and inline, then have the user keepfire reindex later.

Modes

Config lives in ~/.keepfire/config.json:

keepfire mode                              # view all
keepfire mode capture confirm|auto         # ask before saving (default: confirm)
keepfire mode use always_ask|ask_if_low_confidence|auto
keepfire mode suggest on|off               # proactive spark suggestions (default: on)
keepfire mode threshold 0.75               # min confidence for auto-apply (0..1)
User saysDo
"改成 auto" / "don't ask when saving"mode capture auto
"别自动应用,每次问我"mode use always_ask
"别再主动提议收藏了"mode suggest off
"自动应用太激进/太保守"raise / lower mode threshold

Cautions

  • Delete is permanent (no trash). Show the card (show <id>) and confirm before deleting.
  • improve creates a new versioned card linked via parent_id — it never mutates the original. Prefer it over delete-and-recreate.
  • Recipes are user data. Never edit or remove cards the user didn't ask about.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,645. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.