Cf help
Context Layering & Engineering for Agentic Resources — Persistent memory, intelligent context, and structured project management for Claude Code
npx -y skills add QBall-Inc/clear --skill cf-helpAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 3 stars3 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.
What its author says it does
Copied from the file, not written here
Provides help and guidance for CLEAR Framework commands. Use when the user needs a reference, command syntax, or a guided walkthrough of CLEAR features.
SKILL.md
2.2 KB, as published. Nobody here has run it
CLEAR Help
Provides help and guidance for the CLEAR Framework. Routes to the appropriate reference based on arguments.
When to Use This Skill
| Trigger Pattern | Example User Request |
|---|---|
| General help request | "How do I use CLEAR?" |
| Command-specific help | "/cf-help knowledge" |
| Subcommand detail | "/cf-help knowledge search" |
| Full reference listing | "/cf-help --full" |
| Guided walkthrough | "/cf-help --interactive" |
DO NOT use for: executing commands directly, or debugging CLEAR state (use /cf-debug).
Dependencies
| Category | Files | When to Load |
|---|---|---|
| Default | references/default-mode.md | No arguments provided |
| Command | references/command-mode.md | Command name provided |
| Subcommand | references/subcommand-mode.md | Command + subcommand provided |
| Full | references/full-mode.md | --full flag provided |
Routing
Parse $ARGUMENTS and route to exactly one mode. Load only the matching reference file.
-
Interactive -- args contain
--interactive,-i, orguide: Load and invokeskills/cf-help-guide/SKILL.md. Stop here. -
Full -- args contain
--full: Loadreferences/full-mode.md. Follow its instructions. -
Subcommand -- two positional args (e.g.,
knowledge search): Loadreferences/subcommand-mode.md. Pass command and subcommand. -
Command -- one positional arg (e.g.,
knowledge): Loadreferences/command-mode.md. Pass command name. -
Default -- no args or unrecognized: Load
references/default-mode.md. Display quick reference.
Error handling is defined within each reference file.
Completion Checklist
- Correct mode identified from arguments
- Appropriate reference file loaded
- Output displayed to user