@virsanghavi/axis-server 1.0.8 → 1.0.9
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/.axis/instructions/activity.md +2 -0
- package/.axis/instructions/context.md +2 -0
- package/.axis/instructions/conventions.md +2 -0
- package/.axis-server.log +9 -0
- package/bin/cli.ts +2 -2
- package/dist/cli.js +0 -1
- package/dist/mcp-server.mjs +780 -442
- package/package.json +1 -1
package/.axis-server.log
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{"timestamp":"2026-02-07T22:14:31.585Z","level":"warn","message":"Supabase credentials missing. RAG & Persistence disabled. Running in local/ephemeral mode."}
|
|
2
|
+
{"timestamp":"2026-02-07T22:14:31.586Z","level":"info","message":"NerveCenter: Using Remote API persistence (https://aicontext.vercel.app/api/v1)"}
|
|
3
|
+
{"timestamp":"2026-02-07T22:14:31.586Z","level":"info","message":"Server CWD: /Users/vir/Downloads/Projects/Axis/shared-context/packages/axis-server"}
|
|
4
|
+
{"timestamp":"2026-02-07T22:14:31.587Z","level":"info","message":"Created default context file: context.md"}
|
|
5
|
+
{"timestamp":"2026-02-07T22:14:31.589Z","level":"info","message":"Created default context file: conventions.md"}
|
|
6
|
+
{"timestamp":"2026-02-07T22:14:31.589Z","level":"info","message":"Created default context file: activity.md"}
|
|
7
|
+
[NerveCenter] Could not load .axis/axis.json at /Users/vir/Downloads/Projects/Axis/shared-context/packages/axis-server/.axis/axis.json: Error: ENOENT: no such file or directory, open '/Users/vir/Downloads/Projects/Axis/shared-context/packages/axis-server/.axis/axis.json'
|
|
8
|
+
{"timestamp":"2026-02-07T22:14:31.872Z","level":"warn","message":"Failed to recover notepad from API. Using local."}
|
|
9
|
+
{"timestamp":"2026-02-07T22:14:31.872Z","level":"info","message":"Shared Context MCP Server running on stdio"}
|
package/bin/cli.ts
CHANGED
|
@@ -48,10 +48,10 @@ program
|
|
|
48
48
|
// Pass through all arguments from the CLI to the underlying server
|
|
49
49
|
const args = [serverScript, ...process.argv.slice(2)];
|
|
50
50
|
|
|
51
|
-
|
|
51
|
+
|
|
52
52
|
const proc = spawn("node", args, {
|
|
53
53
|
stdio: "inherit",
|
|
54
|
-
cwd: process.cwd(),
|
|
54
|
+
cwd: process.cwd(),
|
|
55
55
|
env: { ...process.env, FORCE_COLOR: '1' }
|
|
56
56
|
});
|
|
57
57
|
|
package/dist/cli.js
CHANGED
|
@@ -61,7 +61,6 @@ import_commander.program.argument("[root]", "Project root directory (optional)")
|
|
|
61
61
|
const proc = (0, import_child_process.spawn)("node", args, {
|
|
62
62
|
stdio: "inherit",
|
|
63
63
|
cwd: process.cwd(),
|
|
64
|
-
// Pass the CWD to the child process
|
|
65
64
|
env: { ...process.env, FORCE_COLOR: "1" }
|
|
66
65
|
});
|
|
67
66
|
proc.on("close", (code) => {
|