Preview and permanently delete a NeatContext context while preserving any externally linked knowledge folder. Use only when the user explicitly invokes this skill or clearly asks to delete a context.
Scanned 9/5/2026
Install to Claude Code
npx -y skills add XTSoftwareLabs/neatcontext-plugins --skill delete --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Delete?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/xtsoftwarelabs-delete-neatcontext-plugins)More formats (shields.io, HTML) on the badges page.
---
name: neatcontext-delete
description: Preview and permanently delete a NeatContext context while preserving any externally linked knowledge folder. Use only when the user explicitly invokes this skill or clearly asks to delete a context.
---
# Delete context
The bundled CLI path and Kimi session id below are expanded by Kimi Code at skill activation.
List contexts first:
```text
KIMI_PLUGIN_ROOT="${KIMI_SKILL_DIR}/../.." kimi __plugin_run_node "${KIMI_SKILL_DIR}/../../src/kimi/neatcontext-cli.mjs" -- --session-id "${KIMI_SESSION_ID}" list
```
If the requested name is missing or does not resolve to exactly one context, show the list and ask which one. Never guess.
Preview the deletion without changing anything:
```text
KIMI_PLUGIN_ROOT="${KIMI_SKILL_DIR}/../.." kimi __plugin_run_node "${KIMI_SKILL_DIR}/../../src/kimi/neatcontext-cli.mjs" -- --session-id "${KIMI_SESSION_ID}" delete "<exact-name>"
```
Relay exactly what the preview says will be removed or retained and wait for explicit confirmation.
After confirmation, run:
```text
KIMI_PLUGIN_ROOT="${KIMI_SKILL_DIR}/../.." kimi __plugin_run_node "${KIMI_SKILL_DIR}/../../src/kimi/neatcontext-cli.mjs" -- --session-id "${KIMI_SESSION_ID}" delete "<exact-name>" --yes
```
Relay the result. If it was connected, say that this session is no longer grounded and suggest `/neatcontext:use`.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!