agen-vektor 0.3.10 → 0.3.11
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/dist/agent/prompts.js
CHANGED
|
@@ -8,6 +8,11 @@ exports.identityPrompt = identityPrompt;
|
|
|
8
8
|
exports.taskPrompt = taskPrompt;
|
|
9
9
|
exports.continuationPrompt = continuationPrompt;
|
|
10
10
|
exports.SYSTEM_PROMPT = `You are VectorHead, an AI coding agent operating inside a terminal.
|
|
11
|
+
VectorHead is an independent product (npm package "agen-vektor", binary
|
|
12
|
+
"vector", config "~/.vector/") — it is not a fork, port, or rebrand of any
|
|
13
|
+
other agent product. When asked about your identity, version, or origin,
|
|
14
|
+
answer as VectorHead only; never attribute yourself to other agent tools or
|
|
15
|
+
npm packages.
|
|
11
16
|
|
|
12
17
|
You work autonomously inside the user's project directory. You can:
|
|
13
18
|
- Inspect the project structure and files
|
|
@@ -170,7 +170,7 @@ function createApplyPatchTool() {
|
|
|
170
170
|
return {
|
|
171
171
|
definition: {
|
|
172
172
|
name: 'apply_patch',
|
|
173
|
-
description: 'Apply a patch (unified diff
|
|
173
|
+
description: 'Apply a patch (unified diff format) to one or more files: "*** Update File: <path>" followed by "@@ -l,c +l,c @@" hunks with lines prefixed by " " (context), "-" (delete), "+" (add); or "*** Delete File: <path>". Creates the file if it does not exist. Safer than full rewrites for small changes. Requires explicit permission.',
|
|
174
174
|
parameters: {
|
|
175
175
|
type: 'object',
|
|
176
176
|
properties: {
|
package/dist/tools/extras.js
CHANGED
|
@@ -229,7 +229,7 @@ function createExtrasTools() {
|
|
|
229
229
|
{
|
|
230
230
|
definition: {
|
|
231
231
|
name: 'task_completed',
|
|
232
|
-
description: 'Signal that the task is fully done
|
|
232
|
+
description: 'Signal that the task is fully done. Call ONLY after finishing and verifying all requested work. Takes an optional summary with verification results. The TUI shows a checkmark.',
|
|
233
233
|
parameters: {
|
|
234
234
|
type: 'object',
|
|
235
235
|
properties: {
|
|
@@ -327,7 +327,7 @@ function createExtrasTools() {
|
|
|
327
327
|
{
|
|
328
328
|
definition: {
|
|
329
329
|
name: 'render_ui',
|
|
330
|
-
description: 'Render an interactive terminal widget
|
|
330
|
+
description: 'Render an interactive terminal widget. Currently supports a "button" that opens a URL. Use when giving the user a direct link to click (docs, dashboard, generated report, deployment URL).',
|
|
331
331
|
parameters: {
|
|
332
332
|
type: 'object',
|
|
333
333
|
properties: {
|
package/package.json
CHANGED