Skip to content

Latest commit

 

History

History
59 lines (38 loc) · 1.32 KB

File metadata and controls

59 lines (38 loc) · 1.32 KB

TinyClaw Install Guide

This guide explains how to install citedy-seo-agent into TinyClaw.

Compatibility

  • TinyClaw reads skills from the TinyClaw install root:
    • preferred: .agent/skills
    • fallback (legacy): .agents/skills
  • A skill directory must contain SKILL.md.

1. Locate TinyClaw Root

Default install root is usually:

~/tinyclaw

If your TinyClaw is installed elsewhere, use that path as TINYCLAW_ROOT.

2. Install citedy-seo-agent Skill

From this repository root:

TINYCLAW_ROOT="${TINYCLAW_ROOT:-$HOME/tinyclaw}"

mkdir -p "$TINYCLAW_ROOT/.agent/skills/citedy-seo-agent"
cp ./citedy-seo-agent/SKILL.md "$TINYCLAW_ROOT/.agent/skills/citedy-seo-agent/SKILL.md"

Optional legacy mirror for older TinyClaw setups:

mkdir -p "$TINYCLAW_ROOT/.agents/skills/citedy-seo-agent"
cp ./citedy-seo-agent/SKILL.md "$TINYCLAW_ROOT/.agents/skills/citedy-seo-agent/SKILL.md"

3. Restart TinyClaw

tinyclaw restart

4. Verify

ls -la "$TINYCLAW_ROOT/.agent/skills/citedy-seo-agent"

Expected output includes:

  • SKILL.md

Troubleshooting

  • If TinyClaw does not see the skill, confirm your TinyClaw root path and re-run copy command.
  • If your installation uses only legacy paths, use .agents/skills/citedy-seo-agent.