Skip to content
Development
Skill

/unsubscribe

Remove a repo from the unified repos list and delete its local clone.

From plugin
altk-evolve
10630 skills10 commands
Install
$ npx -y skills add AgentToolkit/altk-evolve --skill unsubscribe --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/unsubscribe

Context preview

The summary Claude sees to decide when to auto-load this skill.

Remove a repo from the unified repos list and delete its local clone.

SKILL.md

unsubscribe.SKILL.md
name: unsubscribe
description: Remove a repo from the unified repos list and delete its local clone.

Remove a Repo

Overview

Remove a configured repo (any scope) from `evolve.config.yaml` and delete its local clone at `.evolve/entities/subscribed/{name}/`. Warn the user before removing a write-scope repo since any unpushed local publish commits will be lost.

Workflow

Step 1: List repos

Run:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/evolve-lite/unsubscribe/scripts/unsubscribe.py --list

Show the repos to the user (including `scope` and `notes`) and ask which one to remove.

Step 2: Confirm

Confirm deletion of `.evolve/entities/subscribed/{name}/`. If the repo has `scope: write`, add a warning that unpushed local publish commits will be lost.

Step 3: Run unsubscribe script

python3 ${CLAUDE_PLUGIN_ROOT}/skills/evolve-lite/unsubscribe/scripts/unsubscribe.py --name {name}

For a write-scope repo, the script refuses to remove the local clone without `--force` so unpushed publishes can't disappear by accident:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/evolve-lite/unsubscribe/scripts/unsubscribe.py --name {name} --force

Step 4: Confirm

Tell the user the repo was removed.

Notes

  • This removes the entry from `evolve.config.yaml` `repos:` list
  • Deletes `.evolve/entities/subscribed/{name}/` (the local clone, also

the recall mirror)

  • The entities will no longer appear in recall
Read more
Ships withaltk-evolve

Coding agents repeat the same mistakes because they start fresh every session. Evolve gives agents memory — they learn from what worked and what didn't, so each session is better than the last.

Get the whole plugin

Other skills on altk-evolve.