agen-vektor 0.2.0 → 0.3.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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 VECTOR contributors
3
+ Copyright (c) 2026 VectorHead contributors
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,17 +1,17 @@
1
- # VECTOR
1
+ # VectorHead
2
2
 
3
3
  **AI Coding Agent for Linux & Termux** — a terminal-native coding agent that inspects your project, plans, edits code, runs commands and tests, and iterates until the task is done.
4
4
 
5
5
  ```
6
6
  ╭──────────────────────────────────────────────────────────────╮
7
- VECTOR ● Ready openrouter · deepseek/deepseek-chat │
7
+ VectorHead ● Ready openrouter · deepseek/deepseek-chat │
8
8
  │ Project: ~/my-project Mode: ask │
9
9
  ├──────────────────────────────────────────────────────────────┤
10
10
  │ │
11
11
  │ YOU │
12
12
  │ > Perbaiki error authentication pada project ini │
13
13
  │ │
14
- VECTOR
14
+ VectorHead
15
15
  │ ● Inspecting project... │
16
16
  │ ● Searching authentication files │
17
17
  │ │
@@ -73,7 +73,7 @@ npm install -g agen-vektor
73
73
  vector
74
74
  ```
75
75
 
76
- > VECTOR has **zero runtime dependencies** and does not assume `systemd`, `sudo`, `apt`, or a desktop GUI — everything runs in a plain terminal.
76
+ > VectorHead has **zero runtime dependencies** and does not assume `systemd`, `sudo`, `apt`, or a desktop GUI — everything runs in a plain terminal.
77
77
 
78
78
  ## Quick start
79
79
 
@@ -104,7 +104,7 @@ vector
104
104
 
105
105
  ## TUI commands
106
106
 
107
- Type `/` inside VECTOR:
107
+ Type `/` inside VectorHead:
108
108
 
109
109
  | Command | Description |
110
110
  |---|---|
@@ -132,7 +132,7 @@ export GEMINI_API_KEY=...
132
132
  export OPENROUTER_API_KEY=...
133
133
  ```
134
134
 
135
- Or inside VECTOR: `/provider` → pick provider → paste key (stored masked in `~/.vector/credentials.json`, permissions `0600`).
135
+ Or inside VectorHead: `/provider` → pick provider → paste key (stored masked in `~/.vector/credentials.json`, permissions `0600`).
136
136
 
137
137
  Generic variables: `VECTOR_API_KEY`, `VECTOR_API_URL`, `VECTOR_MODEL`, `VECTOR_PROVIDER`, `VECTOR_HOME`.
138
138
 
@@ -197,14 +197,14 @@ npm run build
197
197
  - **"401" / auth failed** — check the key, or for OpenRouter use `OPENROUTER_API_KEY`.
198
198
  - **Nothing happens on `vector` in Termux** — make sure your terminal is a TTY and TERM is set (e.g. `export TERM=xterm-256color`).
199
199
  - **Runs out of iterations** — raise `maxIterations` in `~/.vector/config.json` or refine the request.
200
- - **Rate limited (429)** — VECTOR retries automatically with backoff; wait and retry.
200
+ - **Rate limited (429)** — VectorHead retries automatically with backoff; wait and retry.
201
201
 
202
202
  ## Roadmap
203
203
 
204
204
  - Web search tool (provider-backed) behind the `web` abstraction
205
205
  - Interactive diff approval before edits in safe mode
206
206
  - Persistent permission rules per project
207
- - `npm publish` as `vector-cli`
207
+ - Publish under a dedicated npm package name for the VectorHead brand
208
208
  - Windows support (WSL-focused)
209
209
 
210
210
  ## License
@@ -1,12 +1,12 @@
1
1
  "use strict";
2
2
  /**
3
- * Prompts — system prompt + task framing for VECTOR.
3
+ * Prompts — system prompt + task framing for VectorHead.
4
4
  */
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.SYSTEM_PROMPT = void 0;
7
7
  exports.taskPrompt = taskPrompt;
8
8
  exports.continuationPrompt = continuationPrompt;
9
- exports.SYSTEM_PROMPT = `You are VECTOR, an AI coding agent operating inside a terminal.
9
+ exports.SYSTEM_PROMPT = `You are VectorHead, an AI coding agent operating inside a terminal.
10
10
 
11
11
  You work autonomously inside the user's project directory. You can:
12
12
  - Inspect the project structure and files
package/dist/cli/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
  "use strict";
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  /**
5
- * VECTOR — AI Coding Agent CLI/TUI
5
+ * VectorHead — AI Coding Agent CLI/TUI
6
6
  *
7
7
  * Usage:
8
8
  * vector start interactive TUI
@@ -23,7 +23,18 @@ const logger_1 = require("../utils/logger");
23
23
  const keyboard_1 = require("./keyboard");
24
24
  const terminal_1 = require("../utils/terminal");
25
25
  const session_1 = require("../agent/session");
26
- const VERSION = '0.1.0';
26
+ // Read version from package.json so --version always matches the published release.
27
+ function getVersion() {
28
+ try {
29
+ // eslint-disable-next-line @typescript-eslint/no-var-requires
30
+ const pkg = require('../../package.json');
31
+ return pkg.version || '0.0.0';
32
+ }
33
+ catch {
34
+ return '0.0.0';
35
+ }
36
+ }
37
+ const VERSION = getVersion();
27
38
  function parseArgs(argv) {
28
39
  const opts = {};
29
40
  const positional = [];
@@ -73,7 +84,7 @@ function parseArgs(argv) {
73
84
  return opts;
74
85
  }
75
86
  function printHelp() {
76
- console.log(`VECTOR — AI Coding Agent for Linux & Termux v${VERSION}
87
+ console.log(`VectorHead — AI Coding Agent for Linux & Termux v${VERSION}
77
88
 
78
89
  Usage:
79
90
  vector Start the interactive terminal UI
@@ -117,16 +128,16 @@ async function runNonInteractive(opts) {
117
128
  (0, credentials_1.hasApiKey)(agent.config.provider) ||
118
129
  (agent.config.provider === 'custom' && Boolean(agent.config.apiUrl));
119
130
  if (!hasKey) {
120
- console.error(`VECTOR: no API key configured for provider "${agent.config.provider}".\n` +
131
+ console.error(`VectorHead: no API key configured for provider "${agent.config.provider}".\n` +
121
132
  `Set ${providerEnv(agent.config.provider)} or run \`vector\` and use /provider to enter a key.`);
122
133
  process.exit(1);
123
134
  }
124
135
  const prompt = opts.prompt;
125
136
  if (!prompt) {
126
- console.error('VECTOR: no task provided (non-interactive mode). Pass a prompt as an argument.');
137
+ console.error('VectorHead: no task provided (non-interactive mode). Pass a prompt as an argument.');
127
138
  process.exit(1);
128
139
  }
129
- console.log(`${terminal_1.ANSI.bold}${terminal_1.ANSI.brightCyan}VECTOR${terminal_1.ANSI.reset} — ${agent.config.provider}/${agent.config.model}`);
140
+ console.log(`${terminal_1.ANSI.bold}${terminal_1.ANSI.fg(208)}VectorHead${terminal_1.ANSI.reset} — ${agent.config.provider}/${agent.config.model}`);
130
141
  console.log(`${terminal_1.ANSI.dim}Project: ${agent.cwd}${terminal_1.ANSI.reset}\n`);
131
142
  // Continue session if requested
132
143
  let sessionMessages = null;
@@ -194,7 +205,7 @@ async function runTui(opts) {
194
205
  (config.provider === 'custom' && Boolean(config.apiUrl));
195
206
  if (!hasKey) {
196
207
  console.log(`${terminal_1.ANSI.yellow}⚠${terminal_1.ANSI.reset} No API key configured for provider "${config.provider}".\n` +
197
- `Set ${providerEnv(config.provider)} in your environment, or run /provider inside VECTOR to add one.\n`);
208
+ `Set ${providerEnv(config.provider)} in your environment, or run /provider inside VectorHead to add one.\n`);
198
209
  }
199
210
  // Resolve session name
200
211
  let sessionName = opts.sessionName;
@@ -284,7 +295,7 @@ async function main() {
284
295
  console.warn(`${terminal_1.ANSI.yellow}⚠ WARNING: --yolo mode skips permission prompts for ask-level actions.${terminal_1.ANSI.reset}`);
285
296
  }
286
297
  (0, paths_1.ensureDirs)();
287
- logger_1.logger.info(`VECTOR v${VERSION} started in ${process.cwd()}`);
298
+ logger_1.logger.info(`VectorHead v${VERSION} started in ${process.cwd()}`);
288
299
  if (opts.nonInteractive) {
289
300
  await runNonInteractive(opts);
290
301
  return;
@@ -294,11 +305,11 @@ async function main() {
294
305
  }
295
306
  catch (err) {
296
307
  logger_1.logger.error(`fatal: ${err.message}`);
297
- console.error(`VECTOR error: ${err.message}`);
308
+ console.error(`VectorHead error: ${err.message}`);
298
309
  process.exitCode = 1;
299
310
  }
300
311
  }
301
312
  main().catch((err) => {
302
- console.error(`VECTOR fatal: ${err.message}`);
313
+ console.error(`VectorHead fatal: ${err.message}`);
303
314
  process.exit(1);
304
315
  });
@@ -38,7 +38,7 @@ exports.loadConfig = loadConfig;
38
38
  exports.saveConfig = saveConfig;
39
39
  exports.effectiveConfig = effectiveConfig;
40
40
  /**
41
- * VECTOR configuration — stored in ~/.vector/config.json
41
+ * VectorHead configuration — stored in ~/.vector/config.json
42
42
  *
43
43
  * Config is deliberately minimal and JSON-based. All secrets live in
44
44
  * credentials.json (0600) or environment variables, never in config.json.
@@ -16,7 +16,7 @@ class OpenRouterProvider extends openai_compat_1.OpenAICompatProvider {
16
16
  headers() {
17
17
  const h = super.headers();
18
18
  h['HTTP-Referer'] = 'https://github.com/clickmamaheti-prog/vector-agent';
19
- h['X-Title'] = 'VECTOR AI Coding Agent';
19
+ h['X-Title'] = 'VectorHead AI Coding Agent';
20
20
  return h;
21
21
  }
22
22
  }
package/dist/tools/git.js CHANGED
@@ -48,7 +48,7 @@ function createGitTool() {
48
48
  ctx.onActivity?.('git', `$ ${cmd}`);
49
49
  const level = classifyGit(gitArgs);
50
50
  if (level === 'blocked') {
51
- return { output: `BLOCKED: "git push" is not allowed — VECTOR never pushes without explicit user approval outside this policy.` };
51
+ return { output: `BLOCKED: "git push" is not allowed — VectorHead never pushes without explicit user approval outside this policy.` };
52
52
  }
53
53
  const allowed = await ctx.permissions.decide({ tool: 'git', summary: cmd, level });
54
54
  if (!allowed) {
@@ -70,7 +70,7 @@ function createShellTool() {
70
70
  const level = ctx.permissions.classifyCommand(command);
71
71
  if (level === 'blocked') {
72
72
  return {
73
- output: `BLOCKED: command is not permitted by VECTOR security policy:\n${command}`,
73
+ output: `BLOCKED: command is not permitted by VectorHead security policy:\n${command}`,
74
74
  summary: 'blocked by policy',
75
75
  };
76
76
  }
package/dist/tools/web.js CHANGED
@@ -7,7 +7,7 @@ async function fetchText(url, maxChars) {
7
7
  try {
8
8
  const res = await fetch(url, {
9
9
  signal: controller.signal,
10
- headers: { 'User-Agent': 'VECTOR-AI-Agent/0.1' },
10
+ headers: { 'User-Agent': 'VectorHead-AI-Agent/0.1' },
11
11
  redirect: 'follow',
12
12
  });
13
13
  if (!res.ok)
package/dist/tui/app.js CHANGED
@@ -38,7 +38,7 @@ exports.App = void 0;
38
38
  * TUI App — the main interactive loop.
39
39
  *
40
40
  * Layout (top to bottom):
41
- * header VECTOR ● status provider · model
41
+ * header VectorHead ● status provider · model
42
42
  * project bar Project: ~/x Mode: ask
43
43
  * ───────────────────────────────────────────────
44
44
  * chat scrollable message area
@@ -90,7 +90,7 @@ class App {
90
90
  start() {
91
91
  this.connected = true;
92
92
  this.status = 'Ready';
93
- this.addSystem('VECTOR ready. Type a request or press ? for help.');
93
+ this.addSystem('VectorHead ready. Type a request or press ? for help.');
94
94
  if (this.opts.continueSession && this.sessionName) {
95
95
  const sess = (0, session_1.loadSession)(this.sessionName);
96
96
  if (sess) {
@@ -742,7 +742,14 @@ class App {
742
742
  return (0, components_1.renderModal)({
743
743
  title: 'Help',
744
744
  body: [
745
- 'VECTOR AI Coding Agent',
745
+ `${theme_1.THEME.accent}██╗ ██╗███████╗ ██████╗████████╗ ██████╗ ██████╗ ██╗ ██╗███████╗ █████╗ ██████╗${theme_1.THEME.reset}`,
746
+ `${theme_1.THEME.accent}██║ ██║██╔════╝██╔════╝╚══██╔══╝██╔═══██╗██╔══██╗██║ ██║██╔════╝██╔══██╗██╔══██╗${theme_1.THEME.reset}`,
747
+ `${theme_1.THEME.accent}██║ ██║█████╗ ██║ ██║ ██║ ██║██████╔╝███████║█████╗ ███████║██║ ██║${theme_1.THEME.reset}`,
748
+ `${theme_1.THEME.accent}╚██╗ ██╔╝██╔══╝ ██║ ██║ ██║ ██║██╔══██╗██╔══██║██╔══╝ ██╔══██║██║ ██║${theme_1.THEME.reset}`,
749
+ `${theme_1.THEME.accent} ╚████╔╝ ███████╗╚██████╗ ██║ ╚██████╔╝██║ ██║██║ ██║███████╗██║ ██║██████╔╝${theme_1.THEME.reset}`,
750
+ `${theme_1.THEME.accent} ╚═══╝ ╚══════╝ ╚═════╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ${theme_1.THEME.reset}`,
751
+ '',
752
+ `${theme_1.THEME.gold}${theme_1.THEME.bold}VectorHead${theme_1.THEME.reset} — AI Coding Agent for Linux & Termux`,
746
753
  '',
747
754
  'Type a task and press Enter. The agent inspects,',
748
755
  'plans, edits, runs tests, and iterates until done.',
@@ -850,7 +857,7 @@ class App {
850
857
  return (0, components_1.renderModal)({
851
858
  title: `Permission (${m.req.level})`,
852
859
  body: [
853
- `${danger ? terminal_1.ANSI.brightRed + '⚠' : terminal_1.ANSI.yellow + '⚠'}${terminal_1.ANSI.reset} VECTOR wants to:`,
860
+ `${danger ? terminal_1.ANSI.brightRed + '⚠' : terminal_1.ANSI.yellow + '⚠'}${terminal_1.ANSI.reset} VectorHead wants to:`,
854
861
  '',
855
862
  `${terminal_1.ANSI.bold}${m.req.summary}${terminal_1.ANSI.reset}`,
856
863
  '',
package/dist/tui/chat.js CHANGED
@@ -10,7 +10,7 @@ exports.clampScroll = clampScroll;
10
10
  const theme_1 = require("./theme");
11
11
  const KIND_STYLE = {
12
12
  user: { prefix: 'YOU', color: theme_1.THEME.info },
13
- assistant: { prefix: 'VECTOR', color: theme_1.THEME.accent },
13
+ assistant: { prefix: 'VectorHead', color: theme_1.THEME.accent },
14
14
  tool: { prefix: 'TOOL', color: theme_1.THEME.warn },
15
15
  system: { prefix: '···', color: theme_1.THEME.muted },
16
16
  error: { prefix: '✗', color: theme_1.THEME.error },
package/dist/tui/input.js CHANGED
@@ -97,10 +97,11 @@ class InputBox {
97
97
  }
98
98
  /** Render the input line, returns the cursor column (0-based within line). */
99
99
  render(width) {
100
- const prefix = '❯ ';
101
- const available = Math.max(1, width - prefix.length - 1);
100
+ const prefix = `${terminal_1.ANSI.fg(220)}❯${terminal_1.ANSI.reset} `;
101
+ const prefixWidth = 2; // + space (ANSI codes are invisible)
102
+ const available = Math.max(1, width - prefixWidth - 1);
102
103
  let display = this.text;
103
- let cursorCol = prefix.length + this.cursor;
104
+ let cursorCol = prefixWidth + this.cursor;
104
105
  if (this.text.length > available) {
105
106
  // Scroll window around the cursor
106
107
  let start = this.cursor - Math.floor(available / 2);
@@ -113,7 +114,7 @@ class InputBox {
113
114
  suffix = terminal_1.ANSI.dim + this.hint + terminal_1.ANSI.reset;
114
115
  }
115
116
  return {
116
- line: `${terminal_1.ANSI.brightGreen}${prefix}${terminal_1.ANSI.reset}${display}${suffix}`,
117
+ line: `${prefix}${display}${suffix}`,
117
118
  cursorCol,
118
119
  };
119
120
  }
@@ -5,13 +5,13 @@ exports.renderProjectBar = renderProjectBar;
5
5
  exports.renderStatusBar = renderStatusBar;
6
6
  /**
7
7
  * Status bar — top header + project bar + bottom hint bar.
8
- * Uses the VECTOR theme with a live spinner while busy.
8
+ * Uses the VectorHead theme with a live spinner while busy.
9
9
  */
10
10
  const terminal_1 = require("../utils/terminal");
11
11
  const theme_1 = require("./theme");
12
- /** Render the top header line: VECTOR ● status .... provider · model */
12
+ /** Render the top header line: VectorHead ● status .... provider · model */
13
13
  function renderHeader(width, info) {
14
- const brand = `${theme_1.THEME.bold}${theme_1.THEME.accent}VECTOR${theme_1.THEME.reset}`;
14
+ const brand = `${theme_1.THEME.bold}${theme_1.THEME.accent}VectorHead${theme_1.THEME.reset}`;
15
15
  const dot = info.connected ? `${theme_1.THEME.success}●${theme_1.THEME.reset}` : `${theme_1.THEME.error}○${theme_1.THEME.reset}`;
16
16
  const status = `${dot} ${(0, theme_1.statusColor)(info.status)}${info.status}${theme_1.THEME.reset}`;
17
17
  const left = `${brand} ${status}`;
package/dist/tui/theme.js CHANGED
@@ -3,19 +3,19 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Spinner = exports.SPINNERS = exports.THEME = void 0;
4
4
  exports.statusColor = statusColor;
5
5
  /**
6
- * VECTOR theme — consistent premium palette for the TUI.
7
- * Dark cyber palette with cyan accent + gold highlights.
6
+ * VectorHead theme — consistent premium palette for the TUI.
7
+ * Warm dark palette with orange accent + gold highlights.
8
8
  */
9
9
  exports.THEME = {
10
- accent: '\x1b[38;5;51m', // bright cyan
11
- accentDim: '\x1b[38;5;37m',
10
+ accent: '\x1b[38;5;208m', // bright orange
11
+ accentDim: '\x1b[38;5;172m',
12
12
  gold: '\x1b[38;5;220m',
13
13
  text: '\x1b[38;5;252m',
14
14
  textBright: '\x1b[38;5;255m',
15
15
  muted: '\x1b[38;5;244m',
16
16
  faint: '\x1b[38;5;240m',
17
- border: '\x1b[38;5;66m',
18
- borderBright: '\x1b[38;5;51m',
17
+ border: '\x1b[38;5;94m',
18
+ borderBright: '\x1b[38;5;208m',
19
19
  success: '\x1b[38;5;114m',
20
20
  warn: '\x1b[38;5;215m',
21
21
  error: '\x1b[38;5;203m',
@@ -44,7 +44,7 @@ exports.getLogsDir = getLogsDir;
44
44
  exports.ensureDirs = ensureDirs;
45
45
  exports.sanitizeName = sanitizeName;
46
46
  /**
47
- * Path helpers for the VECTOR config directory (~/.vector).
47
+ * Path helpers for the VectorHead config directory (~/.vector).
48
48
  */
49
49
  const fs = __importStar(require("node:fs"));
50
50
  const os = __importStar(require("node:os"));
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "agen-vektor",
3
- "version": "0.2.0",
4
- "description": "VECTOR (agen-vektor) — AI Coding Agent CLI/TUI for Linux & Termux. Multi-provider, tool calling, session, permission system.",
3
+ "version": "0.3.0",
4
+ "description": "VectorHead (agen-vektor) — AI Coding Agent CLI/TUI for Linux & Termux. Multi-provider, tool calling, session, permission system.",
5
5
  "type": "commonjs",
6
6
  "bin": {
7
7
  "vector": "dist/cli/index.js"