@@ -10,7 +10,7 @@ Ask for the facts you need. Get structured JSON with confidence, evidence, and m
1010[ ![ License: MIT] ( https://img.shields.io/badge/license-MIT-2f80ed.svg )] ( LICENSE )
1111[ ![ Rust 1.88+] ( https://img.shields.io/badge/rust-1.88%2B-orange.svg )] ( https://www.rust-lang.org/ )
1212
13- [ Install] ( docs/INSTALLATION.md ) · [ Quickstart] ( #quickstart ) · [ npm package] ( #javascript-package ) · [ Execution modes] ( #execution-modes ) · [ Examples] ( #common-recipes ) · [ Formats] ( #supported-formats ) · [ CLI reference] ( docs/CLI-REFERENCE.md )
13+ [ Install] ( docs/INSTALLATION.md ) · [ Quickstart] ( #quickstart ) · [ Agent skill ] ( #use-from-a-coding-agent ) · [ npm package] ( #javascript-package ) · [ Execution modes] ( #execution-modes ) · [ Examples] ( #common-recipes ) · [ Formats] ( #supported-formats ) · [ CLI reference] ( docs/CLI-REFERENCE.md )
1414
1515</div >
1616
@@ -171,6 +171,41 @@ printf '%s\n' \
171171 ' {"path":"deck.pptx"}' | deckprobe --jsonl -t @summary
172172```
173173
174+ ## Use from a coding agent
175+
176+ DeckProbe ships an [ Agent Skill] ( https://agentskills.io ) that teaches an agent the
177+ target vocabulary, the report contract, and the exit-status handling, so it stops
178+ guessing flags and stops falling back to unzipping documents by hand.
179+
180+ If you already have the CLI, install the skill for whichever agents this project
181+ uses:
182+
183+ ``` sh
184+ deckprobe install --skills # every agent present in this project
185+ deckprobe install --skills --agent claude -g # ~/.claude/skills/deckprobe/
186+ deckprobe install --skills --dry-run --pretty # preview first
187+ ```
188+
189+ If you do not, install it straight from this repository:
190+
191+ ``` sh
192+ npx skills add deckflow/deckprobe
193+ ```
194+
195+ Claude Code users can instead take it as a plugin:
196+
197+ ```
198+ /plugin marketplace add deckflow/deckprobe
199+ /plugin install deckprobe@deckflow
200+ ```
201+
202+ All three deliver the same bytes from [ ` skills/deckprobe/ ` ] ( skills/deckprobe/ ) .
203+ Note that ` npx skills add ` and the plugin install the instructions only — the
204+ skill's first step checks for the CLI and falls back to ` npx -y @deckflow/deckprobe `
205+ when it is missing. See
206+ [ Installing agent assets] ( docs/CLI-REFERENCE.md#installing-agent-assets ) for the
207+ agent/directory table and the overwrite policy.
208+
174209## JavaScript package
175210
176211The independently published ` @deckflow/deckprobe ` package ships the ` deckprobe `
0 commit comments