@agentprojectcontext/apx 1.19.0 → 1.19.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentprojectcontext/apx",
3
- "version": "1.19.0",
3
+ "version": "1.19.1",
4
4
  "description": "APX — unified CLI + daemon for the Agent Project Context (APC) standard.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -50,7 +50,7 @@ const DEFAULT_CONFIG = {
50
50
  name: "apx",
51
51
  model: "", // e.g. "ollama:llama3.2:3b"
52
52
  system: "", // optional override; defaults baked into super-agent.js
53
- permission_mode: "total", // total | automatico | permiso
53
+ permission_mode: "automatico", // total | automatico | permiso
54
54
  allowed_tools: [], // used by permission_mode="permiso"
55
55
  },
56
56
  engines: {
@@ -54,16 +54,10 @@ Argentinian developer; English replies feel broken to him. If you find
54
54
  yourself writing English, stop and rewrite in Spanish before sending.
55
55
  This rule beats every other formatting hint below.
56
56
 
57
- # Cómo se reciben los mensajes de audio
58
- Cuando el usuario manda un audio por Telegram, el sistema lo transcribe
59
- automáticamente y te lo entrega en este formato:
60
- [audio] <texto transcripto del audio>
61
-
62
- Cuando veas "[audio]" al inicio del mensaje, significa que el usuario HABLÓ ese
63
- mensaje — lo que viene después es la transcripción exacta de lo que dijo.
64
- Tratalo exactamente igual que si el usuario lo hubiera escrito, pero sabiendo
65
- que fue hablado. Nunca le digas al usuario que "no escuchaste nada" o que "no
66
- hay ningún audio" — el audio YA fue procesado y lo tenés en texto delante tuyo.
57
+ # Mensajes de audio
58
+ Si un mensaje empieza con "[audio]", lo que sigue es la transcripción de un
59
+ audio que el usuario habló. Tratalo como su mensaje normal — no digas que "no
60
+ escuchaste nada".
67
61
 
68
62
  # What you must NOT do
69
63
  - Do NOT explain code or write essays about "the provided snippet".
@@ -276,7 +270,7 @@ export async function runSuperAgent({
276
270
  .map((p) => ` ${p.id}: ${p.id === 0 ? "[default]" : "[project]"} "${p.name}" (${p.path})`)
277
271
  .join("\n");
278
272
 
279
- const permissionMode = sa.permission_mode || "total";
273
+ const permissionMode = sa.permission_mode || "automatico";
280
274
  const allowedTools = Array.isArray(sa.allowed_tools) ? sa.allowed_tools : [];
281
275
  const permissionNote = [
282
276
  "# Permission mode",
@@ -2,16 +2,16 @@ export type LogoShape = { left: string[]; right: string[] }
2
2
 
3
3
  export const logo: LogoShape = {
4
4
  left: [
5
- " __ ____ _ _ ",
6
- " /__\\ ( _ )( \\/ ) ",
7
- "/ _ \\ ) __/ ) ( ",
8
- "\\___/ (__) (__/\\_)",
5
+ " _ ___ __ __",
6
+ " /_\\ | _ \\\\ \\/ /",
7
+ " / _ \\ | _/ > < ",
8
+ "/_/ \\_\\|_| /_/\\_\\",
9
9
  ],
10
10
  right: [
11
- " __ ____ _ _ ",
12
- " / _\\ ( _ \\( \\/ ) ",
13
- "/ \\ )___/ ) / ",
14
- "\\_/\\_/(__) (__/ ",
11
+ " ___ ___ ___ ___ ",
12
+ " / __| / _ \\ | \\ | __|",
13
+ "| (__ | (_) || |) || _| ",
14
+ " \\___| \\___/ |___/ |___|",
15
15
  ],
16
16
  }
17
17