AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Spine Recall

skill-nodewarrior-spine-spine-recall · by Nodewarrior

Load all vault docs for a feature area into context. Deep pull for when you need full knowledge on a topic.

— No reviews yet
0 installs
30 views
0.0% view→install

Install

$ agentstack add skill-nodewarrior-spine-spine-recall

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

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

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-nodewarrior-spine-spine-recall)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
● 3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Spine Recall? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Spine Recall — On-Demand Deep Pull

Load all docs for a feature area from the Spine vault into your current context. Use when you need deep knowledge on a specific topic beyond what the auto-loaded index provides.

Vault Path Resolution

Resolve the vault path using this config chain:

  1. $SPINE_VAULT_PATH environment variable
  2. ~/.spine/config.json → read the vaultPath field
  3. Default: ~/Documents/SpineVault/

If the vault doesn't exist, tell the user to run /spine-init first.

Detect Current Repo

basename "$(git remote get-url origin 2>/dev/null)" .git

Fall back to the current directory name if no git remote. If {vault}/{repo}/ doesn't exist, tell the user this repo isn't tracked by Spine yet — suggest /spine-init or /spine-capture.

Mode Selection

If $ARGUMENTS is provided (not empty and not whitespace-only): → Targeted Mode — proceed to "Targeted Recall" below

If $ARGUMENTS is empty or not provided: → Browse Mode — proceed to "Browse Recall" below


Targeted Recall (/spine-recall )

Step 1: Resolve Feature

Match $ARGUMENTS against content in {vault}/{repo}/ using this precedence (first match wins):

  1. Exact feature folder name (case-insensitive)
  2. Exact spine note filename (case-insensitive, with or without .md)
  3. Substring match on spine note title (from title frontmatter field)
  4. Substring match on any doc title in the repo vault

Rules:

  • Case-insensitive throughout
  • If exactly one match → auto-select
  • If multiple matches → show a numbered pick list
  • If no match → "No matching feature found for '{name}'. Available features:" then list all feature folders

Step 2: Load All Docs

Once the feature is resolved, read ALL .md files in that feature folder:

  1. Read the spine note (hub) first — the file tagged type/spine
  2. Read each child doc referenced via [[wikilinks]] in the spine note
  3. Read any remaining .md files in the folder not yet loaded

Present each doc with a clear separator:

━━━ {filename} ━━━
{full doc content}

Step 3: Summary

After loading all docs, provide a one-paragraph summary:

Loaded {N} docs for {feature} ({repo}):
- {spine note title} (hub)
- {child doc 1 title}
- {child doc 2 title}
...

You now have full context on this feature. Refer to these docs as you work.

Step 4: Output Contract

spine_recall_result:
  status: success | no_match | skipped | error
  summary: "Loaded 5 docs for Authentication (my-repo)"
  feature: "authentication"
  docs_loaded:
    - { file: "Authentication.md", type: "spine" }
    - { file: "Fix - Cookie Expiry.md", type: "fix" }
  vault_path: "{vault}/{repo}/{feature}/"

Browse Mode (/spine-recall no args)

Step 1: List All Features

List all feature folders in {vault}/{repo}/:

Spine vault for {repo} — {N} features documented:

[1] {Feature A} — {M} docs
[2] {Feature B} — {M} docs
[3] {Feature C} — {M} docs

Pick a number to load, or (s)kip:

Step 2: User Picks

If the user picks a number → enter Targeted Recall, Step 2 (Load All Docs).

If the user skips → emit output contract with status: skipped.

Step 3: No Features Found

Spine: No features documented for {repo} yet. Use /spine-capture to create the first one.

Emit output contract with status: no_match.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.