reasonix 0.11.3 → 0.12.6
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/dashboard/app.css +2346 -0
- package/dashboard/app.js +3913 -0
- package/dashboard/codemirror.js +36 -0
- package/dashboard/index.html +19 -0
- package/dist/cli/{chunk-JDVY4JDU.js → chunk-PKPWI33U.js} +3 -1
- package/dist/cli/index.js +2348 -225
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/{prompt-YRY4HPMZ.js → prompt-HNDDXDRH.js} +2 -2
- package/dist/index.d.ts +95 -21
- package/dist/index.js +62 -24
- package/dist/index.js.map +1 -1
- package/package.json +102 -76
- /package/dist/cli/{chunk-JDVY4JDU.js.map → chunk-PKPWI33U.js.map} +0 -0
- /package/dist/cli/{prompt-YRY4HPMZ.js.map → prompt-HNDDXDRH.js.map} +0 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<title>Reasonix</title>
|
|
7
|
+
<meta name="reasonix-token" content="__REASONIX_TOKEN__" />
|
|
8
|
+
<meta name="reasonix-mode" content="__REASONIX_MODE__" />
|
|
9
|
+
<link rel="stylesheet" href="/assets/app.css?token=__REASONIX_TOKEN__" />
|
|
10
|
+
<link rel="stylesheet" href="https://esm.sh/uplot@1.6.31/dist/uPlot.min.css" />
|
|
11
|
+
<link rel="stylesheet" href="https://esm.sh/highlight.js@11.10.0/styles/github-dark.min.css" />
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
<div id="root">
|
|
15
|
+
<div class="boot">loading…</div>
|
|
16
|
+
</div>
|
|
17
|
+
<script type="module" src="/assets/app.js?token=__REASONIX_TOKEN__"></script>
|
|
18
|
+
</body>
|
|
19
|
+
</html>
|
|
@@ -988,6 +988,8 @@ export {
|
|
|
988
988
|
TUI_FORMATTING_RULES,
|
|
989
989
|
ESCALATION_CONTRACT,
|
|
990
990
|
NEGATIVE_CLAIM_RULE,
|
|
991
|
+
SKILLS_DIRNAME,
|
|
992
|
+
SKILL_FILE,
|
|
991
993
|
SkillStore,
|
|
992
994
|
sanitizeMemoryName,
|
|
993
995
|
MemoryStore,
|
|
@@ -995,4 +997,4 @@ export {
|
|
|
995
997
|
CODE_SYSTEM_PROMPT,
|
|
996
998
|
codeSystemPrompt
|
|
997
999
|
};
|
|
998
|
-
//# sourceMappingURL=chunk-
|
|
1000
|
+
//# sourceMappingURL=chunk-PKPWI33U.js.map
|