arsenal-agent 0.1.3 → 0.1.4

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/index.js CHANGED
@@ -9,7 +9,9 @@ program
9
9
  .description("Launcher do Claude Code com perfil de conta configurado")
10
10
  .version("0.1.3")
11
11
  .option("-p, --profile <name>", "perfil a usar")
12
- .argument("[args...]", "argumentos passados direto ao claude");
12
+ .argument("[args...]", "argumentos passados direto ao claude")
13
+ .allowUnknownOption(true)
14
+ .passThroughOptions(true);
13
15
  const profileCmd = program.command("profile").description("gerenciar perfis");
14
16
  profileCmd.command("add [name]").description("adicionar perfil").action(async (name) => { await addProfile(name); process.exit(0); });
15
17
  profileCmd.command("list").alias("ls").description("listar perfis").action(() => { listProfiles(); process.exit(0); });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arsenal-agent",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Task router: classifies and launches claude or opencode automatically",
5
5
  "license": "MIT",
6
6
  "author": "DBC Tech",
@@ -26,7 +26,14 @@
26
26
  "engines": {
27
27
  "node": ">=20"
28
28
  },
29
- "keywords": ["ai", "claude", "opencode", "nemotron", "cli", "router"],
29
+ "keywords": [
30
+ "ai",
31
+ "claude",
32
+ "opencode",
33
+ "nemotron",
34
+ "cli",
35
+ "router"
36
+ ],
30
37
  "repository": {
31
38
  "type": "git",
32
39
  "url": "git+https://github.com/dbezerra95/arsenal-cli.git"
package/src/index.tsx CHANGED
@@ -13,6 +13,8 @@ program
13
13
  .version("0.1.3")
14
14
  .option("-p, --profile <name>", "perfil a usar")
15
15
  .argument("[args...]", "argumentos passados direto ao claude")
16
+ .allowUnknownOption(true)
17
+ .passThroughOptions(true)
16
18
 
17
19
  const profileCmd = program.command("profile").description("gerenciar perfis")
18
20
  profileCmd.command("add [name]").description("adicionar perfil").action(async (name) => { await addProfile(name); process.exit(0) })