loki-mode 5.1.1 → 5.1.3
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/bin/loki-mode.js +0 -0
- package/bin/postinstall.js +2 -2
- package/docs/INSTALLATION.md +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -132,7 +132,7 @@ See [benchmarks/results/](benchmarks/results/) for full methodology and solution
|
|
|
132
132
|
|
|
133
133
|
## What is Loki Mode?
|
|
134
134
|
|
|
135
|
-
Loki Mode is a
|
|
135
|
+
Loki Mode is a multi-provider AI skill that orchestrates **37 specialized AI agent types** across **6 swarms** to autonomously build, test, deploy, and scale complete startups. Works with **Claude Code**, **OpenAI Codex CLI**, and **Google Gemini CLI**. It dynamically spawns only the agents you need—**5-10 for simple projects, 100+ for complex startups**—working in parallel with continuous self-verification.
|
|
136
136
|
|
|
137
137
|
```
|
|
138
138
|
PRD → Research → Architecture → Development → Testing → Deployment → Marketing → Revenue
|
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 zero human intervention. Requires --dangerously-skip-permissions flag.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# Loki Mode v5.1.
|
|
6
|
+
# Loki Mode v5.1.3
|
|
7
7
|
|
|
8
8
|
**You are an autonomous agent. You make decisions. You do not ask questions. You do not stop.**
|
|
9
9
|
|
|
@@ -203,4 +203,4 @@ Auto-detected or force with `LOKI_COMPLEXITY`:
|
|
|
203
203
|
|
|
204
204
|
---
|
|
205
205
|
|
|
206
|
-
**v5.
|
|
206
|
+
**v5.1.3 | Multi-Provider Support | ~210 lines core**
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.1.
|
|
1
|
+
5.1.3
|
package/bin/loki-mode.js
CHANGED
|
File without changes
|
package/bin/postinstall.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/**
|
|
3
3
|
* Loki Mode postinstall script
|
|
4
|
-
* Sets up the Claude Code
|
|
4
|
+
* Sets up the skill symlink for Claude Code, Codex CLI, and Gemini CLI
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
const fs = require('fs');
|
|
@@ -13,7 +13,7 @@ const skillDir = path.join(homeDir, '.claude', 'skills', 'loki-mode');
|
|
|
13
13
|
const packageDir = path.join(__dirname, '..');
|
|
14
14
|
|
|
15
15
|
console.log('');
|
|
16
|
-
console.log('Loki Mode v5.
|
|
16
|
+
console.log('Loki Mode v5.1.3 installed!');
|
|
17
17
|
console.log('');
|
|
18
18
|
|
|
19
19
|
// Try to create skill symlink
|
package/docs/INSTALLATION.md
CHANGED
|
@@ -264,7 +264,7 @@ When using `codex` or `gemini` providers, Loki Mode operates in **degraded mode*
|
|
|
264
264
|
|
|
265
265
|
## Claude Code (CLI)
|
|
266
266
|
|
|
267
|
-
Loki Mode can be installed
|
|
267
|
+
Loki Mode can be installed as a skill in three ways:
|
|
268
268
|
|
|
269
269
|
### Option A: Git Clone (Recommended)
|
|
270
270
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "loki-mode",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.3",
|
|
4
4
|
"description": "Multi-agent autonomous startup system for Claude Code, Codex CLI, and Gemini CLI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"author": "Lokesh",
|
|
24
24
|
"bin": {
|
|
25
|
-
"loki": "
|
|
26
|
-
"loki-mode": "
|
|
25
|
+
"loki": "autonomy/loki",
|
|
26
|
+
"loki-mode": "bin/loki-mode.js"
|
|
27
27
|
},
|
|
28
28
|
"files": [
|
|
29
29
|
"SKILL.md",
|