@staff0rd/assist 0.137.0 → 0.139.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 +2 -0
- package/claude/CLAUDE.md +3 -1
- package/claude/commands/commit.md +1 -0
- package/dist/index.js +858 -259
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -45,6 +45,8 @@ 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
|
+
- `/test-cover` - Incrementally increase test coverage by identifying and testing uncovered files
|
|
49
|
+
- `/test-review` - Review existing tests for quality, coverage gaps, and adherence to conventions
|
|
48
50
|
- `/inspect` - Run .NET code inspections on changed files
|
|
49
51
|
- `/screenshot` - Capture a screenshot of a running application window
|
|
50
52
|
- `/seq` - Query Seq logs from a URL or filter expression
|
package/claude/CLAUDE.md
CHANGED
|
@@ -5,7 +5,9 @@ The tool is invoked using the `assist` command and is installed globally. Use it
|
|
|
5
5
|
When renaming TypeScript files or symbols, use the refactor commands instead of doing it manually:
|
|
6
6
|
- `assist refactor rename file <source> <destination>` — rename/move a file and update all imports
|
|
7
7
|
- `assist refactor rename symbol <file> <oldName> <newName>` — rename a variable, function, class, or type across the project
|
|
8
|
-
|
|
8
|
+
- `assist refactor extract <file> <functionName> <destination>` — extract a function and its private dependencies to a new file
|
|
9
|
+
All default to dry-run; add `--apply` to execute.
|
|
10
|
+
When using extract, name the destination file after the exported function (e.g. `updateWorkerCapacity.ts` for `updateWorkerCapacity`) to satisfy `useFilenamingConvention` lint rules.
|
|
9
11
|
|
|
10
12
|
When the user mentions a Jira issue key (e.g. `BAD-671`, `PROJ-123`), use these commands to fetch context:
|
|
11
13
|
- `assist jira view <issue-key>` — print the title and description
|
|
@@ -15,3 +15,4 @@ Where:
|
|
|
15
15
|
- Any subsequent arguments are paths to git add before committing
|
|
16
16
|
- The commit message is 40 characters or less
|
|
17
17
|
- The commit message does not reference Claude
|
|
18
|
+
- Match the repo's commit message style (check git log). If the repo uses conventional commits, ensure the prefix accurately reflects the nature of the change (e.g. don't use `feat:` for non-functional changes like backlog updates or config)
|