You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Document --mermaid in SKILL.md and README.md (#306)
* Document mermaid diagram output in SKILL.md and README.md
Add --mermaid to decision tree, format descriptions, and command
examples. Add depends command section to README. Bump SKILL.md
version to 0.7.4.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* Bump version to 0.7.5
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
---------
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
**Format**: Default is **markdown** (headings, tables, field lists). Use `--oneline` for compact columnar output, `--plaintext` for plain text, or `--json` for JSON.
247
+
**Format**: Default is **markdown** (headings, tables, field lists). Use `--oneline` for compact columnar output, `--plaintext` for plain text, `--json` for JSON, or `--mermaid` for Mermaid diagrams.
232
248
233
249
**Verbosity** (`-v`): q(uiet) → m(inimal) → n(ormal) → d(etailed). Controls which sections are included.
234
250
235
251
**Sections**: Use `-s Name` to include or `-x Name` to exclude sections by name. Bare `-s` lists available sections. Supports glob patterns (`-s Ext*`).
236
252
237
253
**JSON**: `--json` for full JSON, `--json --compact` for minified.
238
254
255
+
**Mermaid**: `--mermaid` for standalone mermaid (`graph TD`), `--markdown --mermaid` for mermaid fenced blocks inside markdown. Currently supported on the `depends` command.
256
+
239
257
## LLM Integration
240
258
241
259
This tool is [designed for LLM-driven development](docs/llm-design.md). A skill is available in the [dotnet/skills](https://github.com/dotnet/skills) marketplace for use with GitHub Copilot and Claude Code.
Copy file name to clipboardExpand all lines: skills/dotnet-inspect/SKILL.md
+22-2Lines changed: 22 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
name: dotnet-inspect
3
-
version: 0.7.2
3
+
version: 0.7.5
4
4
description: Query .NET APIs across NuGet packages, platform libraries, and local files. Search for types, list API surfaces, compare and diff versions, find extension methods and implementors. Use whenever you need to answer questions about .NET library contents.
5
5
---
6
6
@@ -23,6 +23,7 @@ Query .NET library APIs — the same commands work across NuGet packages, platfo
23
23
-**How many overloads?** → `member Type --package Foo --show-index` (shows `Name:N` indices)
24
24
-**What does this package depend on?** → `depends --package Foo`
25
25
-**What does this type inherit?** → `depends 'INumber<TSelf>'`
26
+
-**Want a dependency diagram?** → `depends --mermaid` (standalone) or `depends --markdown --mermaid` (embedded)
Default format is **markdown** — no flags needed. Optional formats: **oneline** (`--oneline`), **plaintext** (`--plaintext`), **json** (`--json`). Verbosity (`-v:q/m/n/d`) controls which sections are included; formatter controls how they render. They compose freely — except `--oneline` and `-v` cannot be combined.
61
+
Default format is **markdown** — no flags needed. Optional formats: **oneline** (`--oneline`), **plaintext** (`--plaintext`), **json** (`--json`), **mermaid** (`--mermaid`). Verbosity (`-v:q/m/n/d`) controls which sections are included; formatter controls how they render. They compose freely — except `--oneline` and `-v` cannot be combined.
0 commit comments