loki-mode 6.62.0 → 6.63.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 +2 -2
- package/VERSION +1 -1
- package/autonomy/hooks/migration-hooks.sh +10 -1
- package/autonomy/issue-providers.sh +7 -2
- package/autonomy/run.sh +444 -83
- package/autonomy/sandbox.sh +5 -2
- package/dashboard/__init__.py +1 -1
- package/dashboard/server.py +11 -2
- package/docs/INSTALLATION.md +1 -1
- package/mcp/__init__.py +1 -1
- package/memory/engine.py +1 -0
- package/package.json +1 -1
- package/state/manager.py +127 -32
- package/web-app/server.py +437 -43
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 v6.
|
|
6
|
+
# Loki Mode v6.63.0
|
|
7
7
|
|
|
8
8
|
**You are an autonomous agent. You make decisions. You do not ask questions. You do not stop.**
|
|
9
9
|
|
|
@@ -267,4 +267,4 @@ The following features are documented in skill modules but not yet fully automat
|
|
|
267
267
|
| Quality gates 3-reviewer system | Implemented (v5.35.0) | 5 specialist reviewers in `skills/quality-gates.md`; execution in run.sh |
|
|
268
268
|
| Benchmarks (HumanEval, SWE-bench) | Infrastructure only | Runner scripts and datasets exist in `benchmarks/`; no published results |
|
|
269
269
|
|
|
270
|
-
**v6.
|
|
270
|
+
**v6.63.0 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.
|
|
1
|
+
6.63.0
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
|
|
32
32
|
set -euo pipefail
|
|
33
33
|
|
|
34
|
+
# shellcheck disable=SC2034
|
|
34
35
|
HOOKS_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
35
36
|
|
|
36
37
|
# Load project-specific hook config if it exists
|
|
@@ -38,14 +39,22 @@ load_migration_hook_config() {
|
|
|
38
39
|
local codebase_path="${1:-.}"
|
|
39
40
|
local config_file="${codebase_path}/.loki/migration-hooks.yaml"
|
|
40
41
|
|
|
41
|
-
# Defaults
|
|
42
|
+
# Defaults (used by other functions in this file; SC2034 disabled for globals-via-function pattern)
|
|
43
|
+
# shellcheck disable=SC2034
|
|
42
44
|
HOOK_POST_FILE_EDIT_ENABLED=true
|
|
45
|
+
# shellcheck disable=SC2034
|
|
43
46
|
HOOK_POST_STEP_ENABLED=true
|
|
47
|
+
# shellcheck disable=SC2034
|
|
44
48
|
HOOK_PRE_PHASE_GATE_ENABLED=true
|
|
49
|
+
# shellcheck disable=SC2034
|
|
45
50
|
HOOK_ON_AGENT_STOP_ENABLED=true
|
|
51
|
+
# shellcheck disable=SC2034
|
|
46
52
|
HOOK_POST_FILE_EDIT_ACTION="run_tests"
|
|
53
|
+
# shellcheck disable=SC2034
|
|
47
54
|
HOOK_POST_FILE_EDIT_ON_FAILURE="block_and_rollback"
|
|
55
|
+
# shellcheck disable=SC2034
|
|
48
56
|
HOOK_POST_STEP_ON_FAILURE="reject_completion"
|
|
57
|
+
# shellcheck disable=SC2034
|
|
49
58
|
HOOK_ON_AGENT_STOP_ON_FAILURE="force_continue"
|
|
50
59
|
|
|
51
60
|
if [[ -f "$config_file" ]] && command -v python3 &>/dev/null; then
|
|
@@ -15,14 +15,19 @@
|
|
|
15
15
|
# JSON with normalized fields: provider, number, title, body, labels, author, url, created_at
|
|
16
16
|
#===============================================================================
|
|
17
17
|
|
|
18
|
-
# Colors (safe to re-source)
|
|
18
|
+
# Colors (safe to re-source; used by scripts that source this file)
|
|
19
|
+
# shellcheck disable=SC2034
|
|
19
20
|
RED='\033[0;31m'
|
|
21
|
+
# shellcheck disable=SC2034
|
|
20
22
|
GREEN='\033[0;32m'
|
|
23
|
+
# shellcheck disable=SC2034
|
|
21
24
|
YELLOW='\033[1;33m'
|
|
25
|
+
# shellcheck disable=SC2034
|
|
22
26
|
CYAN='\033[0;36m'
|
|
23
27
|
NC='\033[0m'
|
|
24
28
|
|
|
25
|
-
# Supported issue providers
|
|
29
|
+
# Supported issue providers (exported for sourcing scripts)
|
|
30
|
+
# shellcheck disable=SC2034
|
|
26
31
|
ISSUE_PROVIDERS=("github" "gitlab" "jira" "azure_devops")
|
|
27
32
|
|
|
28
33
|
# Detect issue provider from a URL or reference
|