Skills founderclaw-status

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/ashish797/founderclaw/founderclaw-status" ~/.claude/skills/openclaw-skills-founderclaw-status && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/ashish797/founderclaw/founderclaw-status" ~/.openclaw/skills/openclaw-skills-founderclaw-status && rm -rf "$T"
manifest: skills/ashish797/founderclaw/founderclaw-status/SKILL.md
source content

FounderClaw Status Check

Run all checks and report:

Check 1: Skills

FC_SKILLS=$(ls ~/.agents/skills/founderclaw/*/SKILL.md 2>/dev/null | wc -l)
LINKED=$(ls -la ~/.agents/skills/ 2>/dev/null | grep founderclaw | wc -l)
echo "Skills in repo: $FC_SKILLS"
echo "Symlinks pointing to founderclaw: $LINKED"

Check 2: Workspace

if [ -d ~/.openclaw/founderclaw/ceo ]; then
    echo "Workspace: EXISTS"
    ls ~/.openclaw/founderclaw/ 2>/dev/null
else
    echo "Workspace: MISSING"
fi

Check 3: Multi-agent config

Use

agents_list
tool to check if these agents exist:

  • founderclaw-main
  • fc-strategy
  • fc-shipper
  • fc-tester
  • fc-safety
  • fc-observer

Count how many are present. Report:

  • "All 6 agents configured" or "Only X/6 agents configured"

Report

FounderClaw Status
==================
Skills:    [X/29 installed]
Workspace: [EXISTS/MISSING]
Agents:    [X/6 configured]
Browse:    [BUILT/NOT BUILT]

Overall: [READY / PARTIAL / NOT INSTALLED]

If PARTIAL or NOT INSTALLED, provide specific fix instructions.