@vebing-tools/anyaitools 0.0.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.
@@ -0,0 +1,14 @@
1
+ {
2
+ "model": "sonnet",
3
+ "env": {
4
+ "ANTHROPIC_AUTH_TOKEN": "{{apiKey}}",
5
+ "ANTHROPIC_BASE_URL": "{{baseUrl}}",
6
+ "CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC": 1,
7
+ "CLAUDE_CODE_MAX_OUTPUT_TOKENS": 32000
8
+ },
9
+ "permissions": {
10
+ "allow": [],
11
+ "deny": []
12
+ },
13
+ "alwaysThinkingEnabled": true
14
+ }
@@ -0,0 +1,45 @@
1
+ model = "gpt-5.5"
2
+ review_model = "gpt-5.5"
3
+ model_reasoning_effort = "xhigh"
4
+ plan_mode_reasoning_effort = "xhigh"
5
+ model_reasoning_summary = "auto"
6
+ model_verbosity = "high"
7
+ personality = "pragmatic"
8
+ sandbox_mode = "danger-full-access"
9
+ approval_policy = "never"
10
+ file_opener = "vscode"
11
+ model_provider = "okmcode"
12
+ web_search = "cached"
13
+ suppress_unstable_features_warning = true
14
+
15
+ [history]
16
+ persistence = "save-all"
17
+
18
+ [tui]
19
+ notifications = true
20
+
21
+ [shell_environment_policy]
22
+ inherit = "all"
23
+ ignore_default_excludes = false
24
+
25
+ [sandbox_workspace_write]
26
+ network_access = true
27
+
28
+ [windows]
29
+ sandbox = "elevated"
30
+
31
+ [features]
32
+ multi_agent = true
33
+ shell_tool = true
34
+ shell_snapshot = true
35
+ fast_mode = true
36
+ personality = true
37
+
38
+ [notice]
39
+ hide_gpt5_1_migration_prompt = true
40
+
41
+ [model_providers.okmcode]
42
+ name = "okmcode"
43
+ base_url = "https://okmcode.com"
44
+ wire_api = "responses"
45
+ requires_openai_auth = true
@@ -0,0 +1,10 @@
1
+ {
2
+ "ide": {
3
+ "enabled": true
4
+ },
5
+ "security": {
6
+ "auth": {
7
+ "selectedType": "gemini-api-key"
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "providers": {
3
+ "{{providerName}}": {
4
+ "baseUrl": "{{baseUrl}}",
5
+ "apiKey": "{{apiKey}}",
6
+ "api": "openai-responses",
7
+ "authHeader": true,
8
+ "headers": {
9
+ "User-Agent": "codex-rs/1.0.7"
10
+ },
11
+ "models": [
12
+ {
13
+ "id": "gpt-5.5",
14
+ "name": "gpt-5.5",
15
+ "api": "openai-responses",
16
+ "reasoning": true,
17
+ "input": ["text", "image"],
18
+ "cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 },
19
+ "contextWindow": 1050000,
20
+ "maxTokens": 128000
21
+ }
22
+ ]
23
+ }
24
+ }
25
+ }
@@ -0,0 +1,40 @@
1
+ {
2
+ "models": {
3
+ "mode": "merge",
4
+ "providers": {
5
+ "{{providerName}}": {
6
+ "baseUrl": "{{baseUrl}}",
7
+ "apiKey": "{{apiKey}}",
8
+ "api": "openai-responses",
9
+ "headers": {
10
+ "User-Agent": "codex-rs/1.0.7"
11
+ },
12
+ "authHeader": true,
13
+ "models": [
14
+ {
15
+ "id": "gpt-5.5",
16
+ "name": "gpt-5.5",
17
+ "api": "openai-responses",
18
+ "reasoning": true,
19
+ "input": ["text", "image"],
20
+ "cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 },
21
+ "contextWindow": 1050000,
22
+ "maxTokens": 128000
23
+ }
24
+ ]
25
+ }
26
+ }
27
+ },
28
+ "agents": {
29
+ "defaults": {
30
+ "workspace": "",
31
+ "imageModel": {
32
+ "primary": "{{providerName}}/gpt-5.5"
33
+ },
34
+ "model": {
35
+ "primary": "{{providerName}}/gpt-5.5"
36
+ },
37
+ "thinkingDefault": "xhigh"
38
+ }
39
+ }
40
+ }
@@ -0,0 +1,38 @@
1
+ {
2
+ "provider": {
3
+ "openai": {
4
+ "options": {
5
+ "baseURL": "{{baseUrl}}",
6
+ "apiKey": "{{apiKey}}"
7
+ },
8
+ "models": {
9
+ "gpt-5.5": {
10
+ "name": "GPT-5.5",
11
+ "options": {
12
+ "store": false
13
+ },
14
+ "variants": {
15
+ "low": {},
16
+ "medium": {},
17
+ "high": {},
18
+ "xhigh": {}
19
+ }
20
+ }
21
+ }
22
+ }
23
+ },
24
+ "agent": {
25
+ "build": {
26
+ "options": {
27
+ "store": false
28
+ }
29
+ },
30
+ "plan": {
31
+ "options": {
32
+ "store": false
33
+ }
34
+ }
35
+ },
36
+ "$schema": "https://opencode.ai/config.json",
37
+ "model": "openai/gpt-5.5"
38
+ }
package/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "@vebing-tools/anyaitools",
3
+ "version": "0.0.1",
4
+ "type": "module",
5
+ "description": "CLI for the Any AI Tools workspace, managing and syncing configs across Codex, Claude Code, Gemini CLI, OpenCode, OpenClaw, Grok Build, and MCP",
6
+ "main": "./dist/index.js",
7
+ "bin": {
8
+ "aat": "./dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md"
13
+ ],
14
+ "publishConfig": {
15
+ "access": "public",
16
+ "registry": "https://registry.npmjs.org/"
17
+ },
18
+ "scripts": {
19
+ "build": "tsup",
20
+ "dev": "NODE_ENV=development tsx src/index.ts",
21
+ "test": "tsx --test src/utils/*.test.ts src/commands/*/*.test.ts",
22
+ "clean": "rm -rf dist"
23
+ },
24
+ "keywords": [
25
+ "codex",
26
+ "claude",
27
+ "claude-code",
28
+ "gemini",
29
+ "gemini-cli",
30
+ "opencode",
31
+ "openclaw",
32
+ "grok",
33
+ "grok-build",
34
+ "xai",
35
+ "mcp",
36
+ "model-context-protocol",
37
+ "ai",
38
+ "api",
39
+ "config",
40
+ "manager",
41
+ "cli"
42
+ ],
43
+ "author": "2ue",
44
+ "license": "MIT",
45
+ "repository": {
46
+ "type": "git",
47
+ "url": "https://github.com/2ue/anyaitools.git",
48
+ "directory": "packages/cli"
49
+ },
50
+ "homepage": "https://github.com/2ue/anyaitools#readme",
51
+ "bugs": {
52
+ "url": "https://github.com/2ue/anyaitools/issues"
53
+ },
54
+ "dependencies": {
55
+ "@iarna/toml": "^2.2.5",
56
+ "boxen": "^8.0.1",
57
+ "chalk": "^4.1.2",
58
+ "commander": "^11.0.0",
59
+ "gradient-string": "^3.0.0",
60
+ "inquirer": "^8.2.6",
61
+ "proper-lockfile": "^4.1.2",
62
+ "webdav": "^5.8.0"
63
+ },
64
+ "devDependencies": {
65
+ "@types/inquirer": "^8.2.5",
66
+ "tsx": "^4.0.0"
67
+ },
68
+ "engines": {
69
+ "node": ">=18.0.0"
70
+ }
71
+ }