/reset
Reset the FPF reasoning cycle to start fresh
$ npx -y skills add NeoLabHQ/context-engineering-kit --skill reset --agent claude-codeHow 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
/reset
Context preview
The summary Claude sees to decide when to auto-load this skill.
Reset the FPF reasoning cycle to start fresh
SKILL.md
reset.SKILL.mdname: reset
description: "Reset the FPF reasoning cycle to start fresh"
Reset Cycle
Reset the FPF reasoning cycle to start fresh.
Action (Run-Time)
Option 1: Soft Reset (Archive Current Session)
Create a session archive and clear active work:
1. **Create Session Archive**
Create a file in `.fpf/sessions/` to record the completed/abandoned session:
# In .fpf/sessions/session-2025-01-15-reset.md
---
id: session-2025-01-15-reset
action: reset
created: 2025-01-15T16:00:00Z
reason: user_requested
---
# Session Archive: 2025-01-15
**Reset Reason**: User requested fresh start
## State at Reset
### Hypotheses
- L0: 2 (proposed)
- L1: 1 (verified)
- L2: 0 (validated)
- Invalid: 1 (rejected)
### Files Archived
- .fpf/knowledge/L0/hypothesis-a.md
- .fpf/knowledge/L0/hypothesis-b.md
- .fpf/knowledge/L1/hypothesis-c.md
### Decision Status
No decision was finalized.
## Notes
Session ended without decision. Hypotheses preserved for potential future reference.
2. **Move Active Work to Archive** (Optional)
If user wants to clear the knowledge directories:
mkdir -p .fpf/archive/session-2025-01-15
mv .fpf/knowledge/L0/*.md .fpf/archive/session-2025-01-15/ 2>/dev/null || true
mv .fpf/knowledge/L1/*.md .fpf/archive/session-2025-01-15/ 2>/dev/null || true
mv .fpf/knowledge/L2/*.md .fpf/archive/session-2025-01-15/ 2>/dev/null || true
3. **Report to User**
## Reset Complete
Session archived to: .fpf/sessions/session-2025-01-15-reset.md
Current state:
- L0: 0 hypotheses
- L1: 0 hypotheses
- L2: 0 hypotheses
Ready for new reasoning cycle. Run `/fpf:propose-hypotheses` to start.
Option 2: Hard Reset (Delete All)
**WARNING**: This permanently deletes all FPF data.
rm -rf .fpf/knowledge/L0/*.md
rm -rf .fpf/knowledge/L1/*.md
rm -rf .fpf/knowledge/L2/*.md
rm -rf .fpf/knowledge/invalid/*.md
rm -rf .fpf/evidence/*.md
rm -rf .fpf/decisions/*.md
Only do this if explicitly requested by user.
Option 3: Decision Reset (Keep Knowledge)
If user wants to re-evaluate existing hypotheses:
1. Move L2 hypotheses back to L1 (re-audit) 2. Or move L1 hypotheses back to L0 (re-verify)
# Re-audit: L2 -> L1
mv .fpf/knowledge/L2/*.md .fpf/knowledge/L1/
# Re-verify: L1 -> L0
mv .fpf/knowledge/L1/*.md .fpf/knowledge/L0/
Read more
name: reset description: "Reset the FPF reasoning cycle to start fresh"
Reset Cycle
Reset the FPF reasoning cycle to start fresh.
Action (Run-Time)
Option 1: Soft Reset (Archive Current Session)
Create a session archive and clear active work:
1. **Create Session Archive**
Create a file in `.fpf/sessions/` to record the completed/abandoned session:
# In .fpf/sessions/session-2025-01-15-reset.md --- id: session-2025-01-15-reset action: reset created: 2025-01-15T16:00:00Z reason: user_requested --- # Session Archive: 2025-01-15 **Reset Reason**: User requested fresh start ## State at Reset ### Hypotheses - L0: 2 (proposed) - L1: 1 (verified) - L2: 0 (validated) - Invalid: 1 (rejected) ### Files Archived - .fpf/knowledge/L0/hypothesis-a.md - .fpf/knowledge/L0/hypothesis-b.md - .fpf/knowledge/L1/hypothesis-c.md ### Decision Status No decision was finalized. ## Notes Session ended without decision. Hypotheses preserved for potential future reference.
2. **Move Active Work to Archive** (Optional)
If user wants to clear the knowledge directories:
mkdir -p .fpf/archive/session-2025-01-15 mv .fpf/knowledge/L0/*.md .fpf/archive/session-2025-01-15/ 2>/dev/null || true mv .fpf/knowledge/L1/*.md .fpf/archive/session-2025-01-15/ 2>/dev/null || true mv .fpf/knowledge/L2/*.md .fpf/archive/session-2025-01-15/ 2>/dev/null || true
3. **Report to User**
## Reset Complete Session archived to: .fpf/sessions/session-2025-01-15-reset.md Current state: - L0: 0 hypotheses - L1: 0 hypotheses - L2: 0 hypotheses Ready for new reasoning cycle. Run `/fpf:propose-hypotheses` to start.
Option 2: Hard Reset (Delete All)
**WARNING**: This permanently deletes all FPF data.
rm -rf .fpf/knowledge/L0/*.md rm -rf .fpf/knowledge/L1/*.md rm -rf .fpf/knowledge/L2/*.md rm -rf .fpf/knowledge/invalid/*.md rm -rf .fpf/evidence/*.md rm -rf .fpf/decisions/*.md
Only do this if explicitly requested by user.
Option 3: Decision Reset (Keep Knowledge)
If user wants to re-evaluate existing hypotheses:
1. Move L2 hypotheses back to L1 (re-audit) 2. Or move L1 hypotheses back to L0 (re-verify)
# Re-audit: L2 -> L1 mv .fpf/knowledge/L2/*.md .fpf/knowledge/L1/ # Re-verify: L1 -> L0 mv .fpf/knowledge/L1/*.md .fpf/knowledge/L0/
A hand-crafted collection of advanced context engineering techniques and patterns with minimal token footprint, focused on improving agent result quality and predictability.
Repo: NeoLabHQ/context-engineering-kit
Other skills on context-engineering-kit.
- /agent-evaluation
Evaluate and improve Claude Code commands, skills, and agents. Use when testing prompt effectiveness, validating context engineering choices, or measuring improvement quality.
Open skill - /apply-anthropic-skill-best-practices
Comprehensive guide for skill development based on Anthropic's official best practices - use for complex skills requiring detailed structure
Open skill - /context-engineering
Understand the components, mechanics, and constraints of context in agent systems. Use when writing, editing, or optimizing commands, skills, or sub-agents prompts.
Open skill - /create-agent
Comprehensive guide for creating Claude Code agents with proper structure, triggering conditions, system prompts, and validation - combines official Anthropic best practices with proven patterns
Open skill - /create-command
Interactive assistant for creating new Claude commands with proper structure, patterns, and MCP tool integration
Open skill - /create-hook
Create and configure git hooks with intelligent project analysis, suggestions, and automated testing
Open skill

