@staff0rd/assist 0.29.0 → 0.31.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.
Files changed (3) hide show
  1. package/README.md +5 -0
  2. package/dist/index.js +641 -146
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -35,6 +35,8 @@ After installation, the `assist` command will be available globally.
35
35
  - `/refactor` - Run refactoring checks for code quality
36
36
  - `/review-comments` - Process PR review comments one by one
37
37
  - `/verify` - Run all verification commands in parallel
38
+ - `/transcript-format` - Format meeting transcripts from VTT files
39
+ - `/transcript-summarise` - List transcripts missing summaries
38
40
 
39
41
  ## CLI Commands
40
42
 
@@ -69,4 +71,7 @@ After installation, the `assist` command will be available globally.
69
71
  - `assist complexity halstead [pattern]` - Calculate Halstead metrics per function
70
72
  - `assist complexity maintainability [pattern]` - Calculate maintainability index per file
71
73
  - `assist complexity sloc [pattern]` - Count source lines of code per file
74
+ - `assist transcript configure` - Configure transcript directories
75
+ - `assist transcript format` - Convert VTT files to formatted markdown transcripts
76
+ - `assist transcript summarise` - List transcripts that do not have summaries
72
77