loki-mode 6.20.0 → 6.22.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 +1 -1
- package/SKILL.md +2 -2
- package/VERSION +1 -1
- package/autonomy/loki +1499 -0
- package/completions/_loki +1 -0
- package/completions/loki.bash +17 -1
- package/dashboard/__init__.py +1 -1
- package/docs/INSTALLATION.md +1 -1
- package/mcp/__init__.py +1 -1
- package/package.json +1 -1
package/completions/_loki
CHANGED
|
@@ -108,6 +108,7 @@ function _loki_commands {
|
|
|
108
108
|
'enterprise:Enterprise feature commands'
|
|
109
109
|
'voice:Voice input commands'
|
|
110
110
|
'doctor:Check system prerequisites'
|
|
111
|
+
'onboard:Analyze repo and generate CLAUDE.md'
|
|
111
112
|
'version:Show version'
|
|
112
113
|
'completions:Output shell completions'
|
|
113
114
|
'help:Show help'
|
package/completions/loki.bash
CHANGED
|
@@ -5,7 +5,7 @@ _loki_completion() {
|
|
|
5
5
|
_init_completion || return
|
|
6
6
|
|
|
7
7
|
# Main subcommands (must match autonomy/loki main case statement)
|
|
8
|
-
local main_commands="start quick demo init stop pause resume status dashboard logs serve api sandbox notify import github issue config provider reset memory compound checkpoint council dogfood projects enterprise voice secrets doctor watchdog audit metrics syslog version completions help"
|
|
8
|
+
local main_commands="start quick demo init stop pause resume status dashboard logs serve api sandbox notify import github issue config provider reset memory compound checkpoint council dogfood projects enterprise voice secrets doctor watchdog audit metrics syslog onboard version completions help"
|
|
9
9
|
|
|
10
10
|
# 1. If we are on the first argument (subcommand)
|
|
11
11
|
if [[ $cword -eq 1 ]]; then
|
|
@@ -128,6 +128,22 @@ _loki_completion() {
|
|
|
128
128
|
COMPREPLY=( $(compgen -W "${issue_cmds}" -- "$cur") )
|
|
129
129
|
;;
|
|
130
130
|
|
|
131
|
+
onboard)
|
|
132
|
+
if [[ "$cur" == -* ]]; then
|
|
133
|
+
COMPREPLY=( $(compgen -W "--depth --format --output --stdout --update --help" -- "$cur") )
|
|
134
|
+
return 0
|
|
135
|
+
fi
|
|
136
|
+
if [[ "$prev" == "--depth" ]]; then
|
|
137
|
+
COMPREPLY=( $(compgen -W "1 2 3" -- "$cur") )
|
|
138
|
+
return 0
|
|
139
|
+
fi
|
|
140
|
+
if [[ "$prev" == "--format" ]]; then
|
|
141
|
+
COMPREPLY=( $(compgen -W "markdown json yaml" -- "$cur") )
|
|
142
|
+
return 0
|
|
143
|
+
fi
|
|
144
|
+
_filedir -d
|
|
145
|
+
;;
|
|
146
|
+
|
|
131
147
|
completions)
|
|
132
148
|
COMPREPLY=( $(compgen -W "bash zsh" -- "$cur") )
|
|
133
149
|
;;
|
package/dashboard/__init__.py
CHANGED
package/docs/INSTALLATION.md
CHANGED
package/mcp/__init__.py
CHANGED