loki-mode 7.1.0 → 7.2.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/SKILL.md +4 -4
- package/VERSION +1 -1
- package/dashboard/__init__.py +1 -1
- package/docs/INSTALLATION.md +22 -68
- package/mcp/__init__.py +1 -1
- package/package.json +1 -1
- package/skills/memory.md +2 -2
package/SKILL.md
CHANGED
|
@@ -3,7 +3,7 @@ name: loki-mode
|
|
|
3
3
|
description: Multi-agent autonomous startup system. Triggers on "Loki Mode". Takes PRD to deployed product with minimal human intervention. Requires --dangerously-skip-permissions flag.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# Loki Mode v7.
|
|
6
|
+
# Loki Mode v7.2.0
|
|
7
7
|
|
|
8
8
|
**You are an autonomous agent. You make decisions. You do not ask questions. You do not stop.**
|
|
9
9
|
|
|
@@ -271,14 +271,14 @@ Auto-detected or force with `LOKI_COMPLEXITY`:
|
|
|
271
271
|
|
|
272
272
|
---
|
|
273
273
|
|
|
274
|
-
## Managed Agents Integration (v7.
|
|
274
|
+
## Managed Agents Integration (v7.2.0)
|
|
275
275
|
|
|
276
276
|
Opt-in integration with Claude Managed Agents (released Apr 2026). Gives
|
|
277
277
|
Loki cross-project audited memory and real multiagent councils. Features
|
|
278
278
|
are BAKED INTO existing RARV-C and council flows -- no new commands to
|
|
279
279
|
learn.
|
|
280
280
|
|
|
281
|
-
**All flags default false.** Default behavior is identical to v7.
|
|
281
|
+
**All flags default false.** Default behavior is identical to v7.2.0.
|
|
282
282
|
|
|
283
283
|
| Flag | Purpose | Status |
|
|
284
284
|
|------|---------|--------|
|
|
@@ -320,4 +320,4 @@ The following features are documented in skill modules but not yet fully automat
|
|
|
320
320
|
| Quality gates 3-reviewer system | Implemented (v5.35.0) | 5 specialist reviewers in `skills/quality-gates.md`; execution in run.sh |
|
|
321
321
|
| Benchmarks (HumanEval, SWE-bench) | Infrastructure only | Runner scripts and datasets exist in `benchmarks/`; no published results |
|
|
322
322
|
|
|
323
|
-
**v7.
|
|
323
|
+
**v7.2.0 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
7.
|
|
1
|
+
7.2.0
|
package/dashboard/__init__.py
CHANGED
package/docs/INSTALLATION.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
The flagship product of [Autonomi](https://www.autonomi.dev/). Complete installation instructions for all platforms and use cases.
|
|
4
4
|
|
|
5
|
-
**Version:** v7.
|
|
5
|
+
**Version:** v7.2.0
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -34,7 +34,7 @@ The flagship product of [Autonomi](https://www.autonomi.dev/). Complete installa
|
|
|
34
34
|
- [Quick Start](#quick-start)
|
|
35
35
|
- [Verify Installation](#verify-installation)
|
|
36
36
|
- [Other Methods](#other-methods)
|
|
37
|
-
- [VS Code Extension](#vs-code-extension)
|
|
37
|
+
- [VS Code Extension (Deprecated)](#vs-code-extension-deprecated)
|
|
38
38
|
- [Sandbox Mode](#sandbox-mode)
|
|
39
39
|
- [Multi-Provider Support](#multi-provider-support)
|
|
40
40
|
- [Claude Code (CLI)](#claude-code-cli)
|
|
@@ -117,79 +117,33 @@ loki doctor # Check skill symlinks, providers, and system prerequisites
|
|
|
117
117
|
|
|
118
118
|
## Other Methods
|
|
119
119
|
|
|
120
|
-
Git clone
|
|
120
|
+
Git clone and Docker installation methods are also available. See
|
|
121
|
+
[alternative-installations.md](alternative-installations.md) for details and
|
|
122
|
+
trade-offs.
|
|
121
123
|
|
|
122
124
|
---
|
|
123
125
|
|
|
124
|
-
## VS Code Extension
|
|
126
|
+
## VS Code Extension (Deprecated)
|
|
125
127
|
|
|
126
|
-
|
|
128
|
+
> **DEPRECATED as of v7.2.0.** The Loki Mode VS Code extension is no longer
|
|
129
|
+
> maintained. Use the dashboard at `loki dashboard start` instead.
|
|
130
|
+
>
|
|
131
|
+
> The marketplace listing remains for users on v7.2.0 and earlier but will
|
|
132
|
+
> not receive further updates. The `vscode-extension/` source remains in the
|
|
133
|
+
> repository for contributors who want to build the extension locally; it is
|
|
134
|
+
> no longer published to the VS Code Marketplace and is not included in npm
|
|
135
|
+
> tarballs.
|
|
127
136
|
|
|
128
|
-
###
|
|
137
|
+
### Recommended replacement: the dashboard
|
|
129
138
|
|
|
130
|
-
**From VS Code:**
|
|
131
|
-
1. Open Extensions (`Cmd+Shift+X` / `Ctrl+Shift+X`)
|
|
132
|
-
2. Search for "loki-mode"
|
|
133
|
-
3. Click **Install**
|
|
134
|
-
|
|
135
|
-
**From Command Line:**
|
|
136
139
|
```bash
|
|
137
|
-
|
|
140
|
+
loki dashboard start
|
|
141
|
+
# Then open http://localhost:57374 in your browser.
|
|
138
142
|
```
|
|
139
143
|
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
### Features
|
|
144
|
-
|
|
145
|
-
- **Activity Bar Icon**: Dedicated Loki Mode panel in the sidebar
|
|
146
|
-
- **Session View**: Real-time session status, provider, phase, and duration
|
|
147
|
-
- **Task View**: Tasks grouped by status (In Progress, Pending, Completed)
|
|
148
|
-
- **Status Bar**: Current state and progress at a glance
|
|
149
|
-
- **Quick Actions**: Start/Stop/Pause/Resume from command palette
|
|
150
|
-
- **Keyboard Shortcut**: `Cmd+Shift+L` (Mac) / `Ctrl+Shift+L` (Windows/Linux)
|
|
151
|
-
|
|
152
|
-
### Usage
|
|
153
|
-
|
|
154
|
-
1. Open a project folder in VS Code
|
|
155
|
-
2. Click the Loki Mode icon in the activity bar (or press `Cmd+Shift+L`)
|
|
156
|
-
3. Click "Start Session" and select your PRD file
|
|
157
|
-
4. Choose your AI provider (Claude, Codex, or Gemini)
|
|
158
|
-
5. Watch progress in the sidebar and status bar
|
|
159
|
-
|
|
160
|
-
### Configuration
|
|
161
|
-
|
|
162
|
-
Open VS Code Settings and search for "loki":
|
|
163
|
-
|
|
164
|
-
| Setting | Default | Description |
|
|
165
|
-
|---------|---------|-------------|
|
|
166
|
-
| `loki.provider` | `claude` | Default AI provider |
|
|
167
|
-
| `loki.apiPort` | `57374` | API server port |
|
|
168
|
-
| `loki.apiHost` | `localhost` | API server host |
|
|
169
|
-
| `loki.autoConnect` | `true` | Auto-connect on activation |
|
|
170
|
-
| `loki.showStatusBar` | `true` | Show status bar item |
|
|
171
|
-
| `loki.pollingInterval` | `2000` | Status polling interval (ms) |
|
|
172
|
-
|
|
173
|
-
### Requirements
|
|
174
|
-
|
|
175
|
-
**The VS Code extension requires the Loki Mode API server to be running.**
|
|
176
|
-
|
|
177
|
-
Before using the extension, start the server:
|
|
178
|
-
|
|
179
|
-
```bash
|
|
180
|
-
# Option A: Using Loki CLI (if installed via npm or Homebrew)
|
|
181
|
-
loki start
|
|
182
|
-
|
|
183
|
-
# Option B: Using the autonomous runner (from source)
|
|
184
|
-
./autonomy/run.sh
|
|
185
|
-
|
|
186
|
-
# Option C: Direct API server start
|
|
187
|
-
loki serve
|
|
188
|
-
```
|
|
189
|
-
|
|
190
|
-
The extension will automatically connect when it detects the server is running at `localhost:57374`.
|
|
191
|
-
|
|
192
|
-
**Troubleshooting:** If you see "API server is not running" errors, make sure you started the server first using one of the commands above.
|
|
144
|
+
The dashboard provides session monitoring, task views, the completion
|
|
145
|
+
council, log streaming, and the managed-memory panel -- the same surface
|
|
146
|
+
the extension exposed, plus everything added since v7.2.0.
|
|
193
147
|
|
|
194
148
|
---
|
|
195
149
|
|
|
@@ -507,13 +461,13 @@ Loki Mode uses two network ports for different services:
|
|
|
507
461
|
|
|
508
462
|
| Port | Service | Description |
|
|
509
463
|
|------|---------|-------------|
|
|
510
|
-
| **57374** | Dashboard + API (FastAPI) | Unified server serving both the web dashboard UI (real-time monitoring, task board, Completion Council, memory browser, log streaming) and the REST API (used by
|
|
464
|
+
| **57374** | Dashboard + API (FastAPI) | Unified server serving both the web dashboard UI (real-time monitoring, task board, Completion Council, memory browser, log streaming) and the REST API (used by CLI tools, programmatic access, and the deprecated VS Code extension). Served by `dashboard/server.py`. |
|
|
511
465
|
|
|
512
466
|
### When to Use Which Port
|
|
513
467
|
|
|
514
468
|
- **Browser access** (dashboard, monitoring): Use port **57374** -- `http://localhost:57374`
|
|
515
469
|
- **API calls** (REST, programmatic): Use port **57374** -- `http://localhost:57374`
|
|
516
|
-
- **VS Code extension
|
|
470
|
+
- **VS Code extension** (deprecated as of v7.2.0): Connects to API on port **57374** automatically (configurable via `loki.apiPort` setting). No new releases will be published; see the deprecation notice above.
|
|
517
471
|
- The server is started automatically when you run `loki start` or `./autonomy/run.sh`. No manual configuration is needed.
|
|
518
472
|
|
|
519
473
|
### Port Configuration
|
package/mcp/__init__.py
CHANGED
package/package.json
CHANGED
package/skills/memory.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Memory Integration (v7.
|
|
1
|
+
# Memory Integration (v7.2.0+)
|
|
2
2
|
|
|
3
3
|
Loki Mode ships two memory layers:
|
|
4
4
|
|
|
@@ -184,4 +184,4 @@ Dashboard endpoints (read-only, view-layer merge):
|
|
|
184
184
|
|
|
185
185
|
---
|
|
186
186
|
|
|
187
|
-
**v7.
|
|
187
|
+
**v7.2.0** | Opt-in, additive, rollback-safe. Default behavior unchanged.
|