agentsclimarketplace

Delete memory

Skill couzip/cc-forever/skills/delete-memory

Delete memories from the index. Supports deletion by IDs, project, timestamp, or all.From its SKILL.md

Install
npx -y skills add couzip/cc-forever --skill delete-memory

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
  • runs commandsInstructs the agent to run 2 commands, including `Call mcp__cc-forever-mcp__delete_memory with appropriate parameters` and 1 more.

SKILL.md

1.9 KB, 495 tokens by cl100k_base, as published. Nobody here has run it

Delete Memories

Delete memories from the persistent index.

Arguments

  • all - Delete all memories
  • project:<name> - Delete all memories for a specific project
  • before:<timestamp> - Delete memories before an ISO timestamp (e.g., before:2025-01-01)
  • <id1> <id2> ... - Delete specific memory IDs

Arguments: $ARGUMENTS

Steps

1. Parse Arguments

Determine the deletion mode:

  • If $ARGUMENTS contains "all": delete all memories (confirm first)
  • If $ARGUMENTS starts with "project:": extract project name
  • If $ARGUMENTS starts with "before:": extract timestamp
  • Otherwise: treat as space-separated IDs

2. Confirmation for Destructive Operations

For all or project: deletions, warn the user about the scope of deletion.

3. Execute Deletion

Call mcp__cc-forever-mcp__delete_memory with appropriate parameters:

For all:

{
  "all": true
}

For project:

{
  "project": "<project-name>"
}

For before timestamp:

{
  "before": "<ISO-timestamp>"
}

For specific IDs:

{
  "ids": ["<id1>", "<id2>", ...]
}

4. Report Results

Display the deletion result:

Deletion completed:
- Deleted: {deleted_count} memories
- Criteria: {criteria used}

5. Show Updated Stats

Optionally call get_stats to show the remaining memory count.

Examples

  • /cc-forever:delete all - Delete all memories
  • /cc-forever:delete project:my-app - Delete all memories for "my-app" project
  • /cc-forever:delete before:2025-01-01T00:00:00Z - Delete memories before 2025
  • /cc-forever:delete 2025-01-15T10:30:00.000Z-0 2025-01-15T10:30:00.000Z-1 - Delete specific IDs

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.