Help us improve
Share bugs, ideas, or general feedback.
From waymark
This skill should be used when the user asks about "wm command", "waymark cli", "wm find", "wm add", "wm edit", "wm rm", "wm fmt", "wm lint", or needs to use waymark tooling. Requires `using-waymarks` skill for syntax fundamentals. Provides comprehensive CLI command reference and workflows.
npx claudepluginhub outfitter-dev/waymarkHow this skill is triggered — by the user, by Claude, or both
Slash command
/waymark:waymark-cliThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
<!-- tldr ::: core skill documentation for waymark CLI agents -->
commands/add.mdcommands/check.mdcommands/config.mdcommands/doctor.mdcommands/edit.mdcommands/find.mdcommands/fmt.mdcommands/help.mdcommands/init.mdcommands/lint.mdcommands/rm.mdcommands/seed.mdcommands/update.mdexamples/agent-tasks.mdexamples/auditing.mdexamples/batch-operations.mdexamples/integration.mdexamples/workflows.mdmanifest.jsonreferences/errors.mdGuides creating slash commands for Claude Code: structure, YAML frontmatter, dynamic arguments, file references, bash execution, user interactions, organization, and best practices.
Guides creation of Claude Code slash commands using YAML frontmatter, XML tags like <objective> and <process>, dynamic context, and argument handling.
Guides developers in creating and organizing slash commands for Claude Code, covering YAML frontmatter, dynamic arguments, bash execution, and user interaction patterns.
Share bugs, ideas, or general feedback.
Load the using-waymarks skill first for grammar and syntax fundamentals. This skill focuses on CLI commands and workflows, assuming familiarity with waymark syntax.
Load first:
using-waymarkscovers grammar, markers, TLDRs, and ripgrep patterns.
| Command | Purpose | Example |
|---|---|---|
| find | Scan and filter | wm find src/ --type todo --json |
| add | Insert waymarks | wm add src/auth.ts:42 todo "add retry" |
| edit | Modify waymarks | wm edit src/auth.ts:42 --flagged |
| rm | Remove waymarks | wm rm src/auth.ts:42 --write |
| fmt | Format waymarks | wm fmt src/ --write |
| lint | Validate structure | wm lint src/ --json |
| init | Write config | wm init --format toml |
| config | Print config | wm config --print --json |
| skill | Show skill docs | wm skill show add |
| update | Update CLI | wm update --yes |
| doctor | Diagnose config | wm doctor --json |
| help | Show CLI help | wm help add |
wm find src/ --type todo --jsonwm add src/new.ts:1 tldr "summary"wm edit src/auth.ts:42 --flagged --writewm rm src/auth.ts:42 --write--json: JSON array (best for parsing)--jsonl: JSON lines (streaming)--write to apply changes.--no-input fails fast in CI if prompts are required.| Code | Meaning |
|---|---|
| 0 | Success |
| 1 | Waymark error |
| 2 | Usage error |
| 3 | Configuration error |
| 4 | I/O error |
wm skill show <command>wm skill show schemas or wm skill show exit-codeswm skill show skill-formatwm skill show project-skillswm skill show workflowswm <command> --helpusing-waymarks - Grammar, syntax, markers, TLDRs, and ripgrep patterns (load first)