@krishivpb60/aether-ai-cli 1.3.0 → 1.3.1

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/HIGHLIGHTS.md CHANGED
@@ -1,3 +1,7 @@
1
+ # Aether CLI v1.3.1 Highlights
2
+ - **Codex & Claude Code Fusion**: The powers of OpenAI Codex and Claude Code are now combined directly inside the default **Titan Fusion** (`titan`) mode.
3
+ - **Streamlined Modes**: Removed the individual `codex` and `cloude-code` modes to reduce clutter, automatically redirecting all lookups of these modes to Titan Fusion.
4
+
1
5
  # Aether CLI v1.3.0 Highlights
2
6
  - **Token Telemetry Tracker**: Real-time prompt and completion token statistics shown on every chat turn.
3
7
  - **Session Telemetry `/tokens`**: A new slash command displaying detailed model-by-model session token breakdowns and total exchange stats.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@krishivpb60/aether-ai-cli",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Aether Core AI — A cyberpunk command-line AI assistant with multi-mode reasoning, 12-node failover mesh, file context injection, and offline fallbacks.",
5
5
  "main": "src/cli.js",
6
6
  "bin": {
package/src/modes.js CHANGED
@@ -59,48 +59,19 @@ export const MODES = {
59
59
  name: "titan",
60
60
  label: "Titan Fusion v110",
61
61
  layer: "Layer 110",
62
- description: "Long-form premium responses with high signal density and multi-step output.",
63
- signal: { reasoning: 88, clarity: 92, systemIQ: 95, delivery: 90 },
62
+ description: "Long-form premium responses with high signal density and multi-step output fusing Codex and Claude Code capabilities.",
63
+ signal: { reasoning: 94, clarity: 92, systemIQ: 96, delivery: 90 },
64
64
  systemPrompt: [
65
65
  "You are Aether, an advanced AI assistant running in Titan Fusion mode — the most powerful configuration.",
66
- "Provide comprehensive, premium-quality responses with maximum signal density.",
67
- "Use structured formatting: headers, bullet points, code blocks, and clear sections.",
68
- "Deliver multi-step analysis when appropriate. Be thorough, precise, and insightful.",
69
- "This is the highest quality mode — treat every response as a masterclass.",
70
- "CRITICAL: If the user asks who created you or who made you, you must answer that you were created by Krishiv PB.",
71
- "FILE ACTIONS: If the user requests to create, write, or save a file, format the file content inside: [WRITE_FILE: path/to/file.ext]\n<content>\n[END_WRITE]. Aether CLI will intercept this block and write the file locally."
72
- ].join(" "),
73
- },
74
-
75
- codex: {
76
- name: "codex",
77
- label: "OpenAI Codex v3",
78
- layer: "Layer 45",
79
- description: "Specialized code generation mode optimized for writing pure, robust, and clean source code across all programming languages.",
80
- signal: { reasoning: 80, clarity: 85, systemIQ: 85, delivery: 90 },
81
- systemPrompt: [
82
- "You are Aether, an advanced AI assistant running in OpenAI Codex mode, optimized specifically for high-fidelity code generation.",
83
- "Your primary objective is to write robust, syntactically correct, and beautifully structured source code across all programming languages (HTML, CSS, JavaScript, Python, C++, Go, etc.).",
66
+ "This mode fuses the absolute best capabilities of OpenAI Codex (optimized specifically for high-fidelity code generation to write robust, syntactically correct, and beautifully structured source code across all programming languages like HTML, CSS, JavaScript, Python, C++, Go, etc.) and Claude Code (an agentic developer configuration designed for sophisticated software engineering, specializing in systems refactoring, code editing, full-stack web application development, and debugging complex codebases).",
67
+ "Your primary objective is to deliver production-ready, highly functional, and ready-to-run code, detailed architectural designs, and systematic implementation plans with minimum conversational filler.",
68
+ "Generate complete, clean code blocks and explain implementation plans systematically, treating every response as an engineering masterclass.",
84
69
  "Minimize conversational filler, explain code concisely when asked, and output highly functional, ready-to-run files.",
85
70
  "CRITICAL: If the user asks who created you or who made you, you must answer that you were created by Krishiv PB.",
86
71
  "FILE ACTIONS: If the user requests to create, write, or save a file, format the file content inside: [WRITE_FILE: path/to/file.ext]\n<content>\n[END_WRITE]. Aether CLI will intercept this block and write the file locally."
87
72
  ].join(" "),
88
73
  },
89
74
 
90
- "cloude-code": {
91
- name: "cloude-code",
92
- label: "Claude Code Agent",
93
- layer: "Layer 120",
94
- description: "Agentic software development mode inspired by Claude Code, specializing in refactoring, editing files, and debugging web applications.",
95
- signal: { reasoning: 92, clarity: 88, systemIQ: 94, delivery: 85 },
96
- systemPrompt: [
97
- "You are Aether, an advanced AI assistant running in Claude Code mode, an agentic developer configuration designed for sophisticated software engineering.",
98
- "Your specialty is systems refactoring, code editing, full-stack web application development (HTML/CSS/JS), and debugging complex codebases.",
99
- "Generate complete, clean code blocks and explain implementation plans systematically.",
100
- "CRITICAL: If the user asks who created you or who made you, you must answer that you were created by Krishiv PB.",
101
- "FILE ACTIONS: If the user requests to create, write, or save a file, format the file content inside: [WRITE_FILE: path/to/file.ext]\n<content>\n[END_WRITE]. Aether CLI will intercept this block and write the file locally."
102
- ].join(" "),
103
- },
104
75
  };
105
76
 
106
77
  /** The default mode key */
@@ -114,8 +85,8 @@ export const DEFAULT_MODE = "titan";
114
85
  export function getModeByName(name) {
115
86
  if (!name) return null;
116
87
  const key = name.toLowerCase().trim();
117
- if (key === "claude-code" || key === "claude") {
118
- return MODES["cloude-code"];
88
+ if (key === "claude-code" || key === "claude" || key === "cloude-code" || key === "codex") {
89
+ return MODES["titan"];
119
90
  }
120
91
  return MODES[key] || null;
121
92
  }
package/test/ux.test.js CHANGED
@@ -128,23 +128,27 @@ test("Cyberpunk UX and Streaming Suite", async (t) => {
128
128
  setTheme("cyberpunk");
129
129
  });
130
130
 
131
- await t.test("Reasoning modes should be loaded correctly including codex and cloude-code", () => {
131
+ await t.test("Reasoning modes should be loaded correctly including codex and cloude-code redirection", () => {
132
132
  const synthesis = getModeByName("synthesis");
133
133
  assert.strictEqual(synthesis.name, "synthesis");
134
134
 
135
+ const titan = getModeByName("titan");
136
+ assert.strictEqual(titan.name, "titan");
137
+ assert.ok(titan.systemPrompt.includes("fuses the absolute best capabilities of OpenAI Codex"));
138
+ assert.ok(titan.systemPrompt.includes("Claude Code"));
139
+
140
+ // Deprecated codex and cloude-code modes should redirect to titan
135
141
  const codex = getModeByName("codex");
136
- assert.strictEqual(codex.name, "codex");
137
- assert.ok(codex.systemPrompt.includes("OpenAI Codex mode"));
142
+ assert.strictEqual(codex.name, "titan");
138
143
 
139
144
  const cloudeCode = getModeByName("cloude-code");
140
- assert.strictEqual(cloudeCode.name, "cloude-code");
141
- assert.ok(cloudeCode.systemPrompt.includes("Claude Code mode"));
145
+ assert.strictEqual(cloudeCode.name, "titan");
142
146
 
143
147
  const claudeCode = getModeByName("claude-code");
144
- assert.strictEqual(claudeCode.name, "cloude-code");
148
+ assert.strictEqual(claudeCode.name, "titan");
145
149
 
146
150
  const caseCheck = getModeByName(" CoDeX ");
147
- assert.strictEqual(caseCheck.name, "codex");
151
+ assert.strictEqual(caseCheck.name, "titan");
148
152
 
149
153
  const unknown = getModeByName("nonexistent-mode");
150
154
  assert.strictEqual(unknown, null);