@staff0rd/assist 0.110.0 → 0.112.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 +3 -0
- package/claude/commands/jira.md +5 -0
- package/claude/settings.json +2 -0
- package/dist/index.js +683 -669
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
A CLI tool for enforcing determinism in LLM development workflow automation.
|
|
4
4
|
|
|
5
|
+
See [devlog](https://staffordwilliams.com/devlog/assist/) for latest features.
|
|
6
|
+
|
|
5
7
|
## Installation
|
|
6
8
|
You can install `assist` globally using npm:
|
|
7
9
|
|
|
@@ -39,6 +41,7 @@ After installation, the `assist` command will be available globally. You can als
|
|
|
39
41
|
- `/refactor` - Run refactoring checks for code quality
|
|
40
42
|
- `/restructure` - Analyze and restructure tightly-coupled files
|
|
41
43
|
- `/review-comments` - Process PR review comments one by one
|
|
44
|
+
- `/jira` - View a Jira work item
|
|
42
45
|
- `/journal` - Append a journal entry summarising recent work, decisions, and notable observations
|
|
43
46
|
- `/standup` - Summarise recent journal entries as a standup update
|
|
44
47
|
- `/sync` - Sync commands and settings to ~/.claude
|
package/claude/settings.json
CHANGED