founderclaw-upgrade

Upgrade founderclaw to the latest version. Detects install location, pulls updates, and shows what's new. Use when: "upgrade founderclaw", "update founderclaw", "get latest version", "update skills".

3,891 stars

Best use case

founderclaw-upgrade is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Upgrade founderclaw to the latest version. Detects install location, pulls updates, and shows what's new. Use when: "upgrade founderclaw", "update founderclaw", "get latest version", "update skills".

Teams using founderclaw-upgrade should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/gstack-upgrade/SKILL.md --create-dirs "https://raw.githubusercontent.com/openclaw/skills/main/skills/ashish797/founderclaw/gstack-upgrade/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/gstack-upgrade/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How founderclaw-upgrade Compares

Feature / Agentfounderclaw-upgradeStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Upgrade founderclaw to the latest version. Detects install location, pulls updates, and shows what's new. Use when: "upgrade founderclaw", "update founderclaw", "get latest version", "update skills".

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# Upgrade founderclaw

Pull the latest version and show what's new.

## Step 1: Detect Install Location

```bash
SKILL_DIR=""
# Check symlink target
for link in ~/.agents/skills/*/; do
    target=$(readlink "$link" 2>/dev/null)
    if echo "$target" | grep -q "founderclaw"; then
        SKILL_DIR=$(dirname "$target")
        break
    fi
done

# Fallback: direct check
[ -z "$SKILL_DIR" ] && [ -d ~/.agents/skills/founderclaw ] && SKILL_DIR=~/.agents/skills/founderclaw
[ -z "$SKILL_DIR" ] && [ -d founderclaw ] && SKILL_DIR=$(pwd)/founderclaw

if [ -z "$SKILL_DIR" ] || [ ! -d "$SKILL_DIR/.git" ]; then
    echo "founderclaw not found. Install it first."
    exit 1
fi

echo "Install dir: $SKILL_DIR"
```

## Step 2: Save Old Version

```bash
OLD_VERSION=$(cd "$SKILL_DIR" && git rev-parse --short HEAD 2>/dev/null || echo "unknown")
echo "Current version: $OLD_VERSION"
```

## Step 3: Upgrade

```bash
cd "$SKILL_DIR"
STASH_OUTPUT=$(git stash 2>&1)
git fetch origin
git reset --hard origin/main

if echo "$STASH_OUTPUT" | grep -q "Saved working directory"; then
    echo "Note: local changes were stashed. Run 'git stash pop' to restore them."
fi
```

## Step 4: Re-symlink Skills

```bash
SKILLS_DIR=~/.agents/skills
for skill_dir in "$SKILL_DIR"/*/; do
    skill_name=$(basename "$skill_dir")
    [ ! -f "$skill_dir/SKILL.md" ] && continue
    
    target="$SKILLS_DIR/$skill_name"
    if [ -L "$target" ] && [ "$(readlink "$target")" = "$skill_dir" ]; then
        : # already linked
    elif [ ! -e "$target" ]; then
        ln -sf "$skill_dir" "$target"
        echo "  + $skill_name (new)"
    else
        echo "  ~ $skill_name (exists, not overwriting)"
    fi
done
```

## Step 5: Rebuild Browse (if needed)

```bash
BROWSE_BIN="$SKILL_DIR/browse/dist/browse"
if [ ! -x "$BROWSE_BIN" ] && command -v bun >/dev/null 2>&1; then
    echo "Rebuilding browse binary..."
    cd "$SKILL_DIR/browse"
    bun install --silent 2>/dev/null
    bun build src/cli.ts --compile --outfile dist/browse 2>/dev/null
    [ -x "$BROWSE_BIN" ] && echo "  ✓ browse rebuilt" || echo "  ⚠ browse build failed"
fi
```

## Step 6: Show What's New

```bash
cd "$SKILL_DIR"
NEW_VERSION=$(git rev-parse --short HEAD)
echo ""
echo "founderclaw upgraded: $OLD_VERSION -> $NEW_VERSION"
echo ""
echo "Recent commits:"
git log --oneline "$OLD_VERSION..HEAD" 2>/dev/null | head -10
```

## Done

Skills are updated. No restart needed — changes take effect immediately.

Related Skills

account-upgrade

3891
from openclaw/skills

账号升级与权限说明 skill。用于处理配额不足、绑定账号、会员权益、PDF 不可用、升级方案和 API Key 入口说明。当用户说“怎么升级”“为什么不能导出 PDF”“绑定账号”时使用。

Account Management

bamdra-memory-upgrade-operator

3891
from openclaw/skills

Safely install, uninstall, reinstall, or upgrade the Bamdra OpenClaw memory suite when stale config, existing plugin directories, or partial installs break normal `openclaw plugins install` flows.

install-founderclaw

3891
from openclaw/skills

Install FounderClaw — a complete multi-agent system for OpenClaw. Adds 6 agents, 29 skills, creates communication channels, configures models. Interactive setup. Requires user input for model selection and channel setup. Triggered by: "install founderclaw", "setup founderclaw", "get founderclaw".

founderclaw-status

3891
from openclaw/skills

Check FounderClaw installation status. Verifies skills, workspace, and multi-agent config are all properly set up. Use when: "founderclaw status", "is founderclaw working", "check founderclaw", "founderclaw health".

founderclaw

3891
from openclaw/skills

FounderClaw — Multi-agent engineering team for OpenClaw. 29 skills, 6 agents (CEO + 5 departments), structured workspace, auto mode, vision sub-agent routing. Build startups with AI agents.

Paywall & Upgrade CRO Skill

3891
from openclaw/skills

## Trigger

upgrade

3891
from openclaw/skills

Safe OpenClaw upgrade with instant rollback. Use when user says "upgrade openclaw", "update openclaw", "check for updates", or any request to upgrade/update the OpenClaw installation. NOT for config changes (use gateway config.patch). NOT for skill updates (use clawhub).

paywall-upgrade-cro

3891
from openclaw/skills

When the user wants to create or optimize in-app paywalls, upgrade screens, upsell modals, or feature gates. Also use when the user mentions "paywall," "upgrade screen," "upgrade modal," "upsell," "feature gate," "convert free to paid," "freemium conversion," "trial expiration screen," "limit reached screen," "plan upgrade prompt," or "in-app pricing." Distinct from public pricing pages (see page-cro) — this skill focuses on in-product upgrade moments where the user has already experienced value.

openclaw-upgrade-assistant

3891
from openclaw/skills

深度分析 OpenClaw 版本更新对现有配置的影响,生成兼容性报告并精准备份受影响文件。Invoke when user asks to analyze OpenClaw updates, check upgrade compatibility, or backup configs before upgrading.

dependency-upgrade-briefing

3891
from openclaw/skills

解释依赖升级的收益、风险、回滚方案与对业务的影响。;use for dependencies, upgrade, risk workflows;do not use for 伪造上游 changelog, 替代兼容性测试.

---

3891
from openclaw/skills

name: article-factory-wechat

Content & Documentation

humanizer

3891
from openclaw/skills

Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, negative parallelisms, and excessive conjunctive phrases.

Content & Documentation