@staff0rd/assist 0.126.0 → 0.127.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -45,6 +45,7 @@ After installation, the `assist` command will be available globally. You can als
45
45
  - `/journal` - Append a journal entry summarising recent work, decisions, and notable observations
46
46
  - `/standup` - Summarise recent journal entries as a standup update
47
47
  - `/sync` - Sync commands and settings to ~/.claude
48
+ - `/inspect` - Run .NET code inspections on changed files
48
49
  - `/seq` - Query Seq logs from a URL or filter expression
49
50
  - `/verify` - Run all verification commands in parallel
50
51
  - `/transcript-format` - Format meeting transcripts from VTT files
@@ -0,0 +1,7 @@
1
+ ---
2
+ description: Run .NET code inspections on changed files
3
+ ---
4
+
5
+ Run `assist dotnet inspect $ARGUMENTS 2>&1`. If it reports issues, summarise the findings grouped by severity or category and suggest fixes.
6
+
7
+ ARGUMENTS: $ARGUMENTS
@@ -96,6 +96,8 @@
96
96
  "SlashCommand(/jira)",
97
97
  "Skill(seq)",
98
98
  "SlashCommand(/seq)",
99
+ "Skill(inspect)",
100
+ "SlashCommand(/inspect)",
99
101
  "WebFetch(domain:staffordwilliams.com)"
100
102
  ],
101
103
  "deny": ["Bash(git commit:*)", "Bash(npm run:*)", "Bash(npx assist:*)"]
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@ import { Command } from "commander";
6
6
  // package.json
7
7
  var package_default = {
8
8
  name: "@staff0rd/assist",
9
- version: "0.126.0",
9
+ version: "0.127.0",
10
10
  type: "module",
11
11
  main: "dist/index.js",
12
12
  bin: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@staff0rd/assist",
3
- "version": "0.126.0",
3
+ "version": "0.127.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "bin": {