xyteeecode 1.0.0 → 1.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.
Files changed (2) hide show
  1. package/README.md +86 -0
  2. package/package.json +15 -4
package/README.md ADDED
@@ -0,0 +1,86 @@
1
+ # xyteeecode
2
+
3
+ xyteeecode is an AI coding agent that runs in your terminal — powered by open models, with a clean TUI, agentic tool use, and full session history.
4
+
5
+ It is the rebranded fork of [opencode](https://opencode.ai), distributed as a single self-contained binary.
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ npm install -g xyteeecode
11
+ ```
12
+
13
+ The package automatically installs the matching binary for your platform (arm64/x64, Linux/macOS/Windows).
14
+
15
+ ## Quick start
16
+
17
+ ### With Kira free models (no API key setup required after signup)
18
+
19
+ 1. Sign up for a free key at [kira](https://kiraai.vn) (the gateway used in this project).
20
+ 2. Place your key in your global config:
21
+
22
+ `~/.config/opencode/opencode.jsonc`
23
+
24
+ ```jsonc
25
+ {
26
+ "provider": {
27
+ "kira": {
28
+ "npm": "@ai-sdk/openai-compatible",
29
+ "name": "Kira",
30
+ "options": {
31
+ "baseURL": "https://kiraai.vn/api/v1",
32
+ "apiKey": "{env:KIRA_API_KEY}"
33
+ },
34
+ "models": {
35
+ "qwen3.8-flash-free": {
36
+ "name": "Qwen 3.8 Flash (free)"
37
+ },
38
+ "hy3-free": {
39
+ "name": "HY3 (free)"
40
+ },
41
+ "mimo-v2.5-free": {
42
+ "name": "Mimo 2.5 (free)"
43
+ },
44
+ "glm-5.3-free": {
45
+ "name": "GLM 5.3 (free)"
46
+ }
47
+ }
48
+ }
49
+ },
50
+ "model": "kira/qwen3.8-flash-free"
51
+ }
52
+ ```
53
+
54
+ 3. Run:
55
+
56
+ ```bash
57
+ xyteeecode
58
+ ```
59
+
60
+ Or run a one-off prompt without opening the TUI:
61
+
62
+ ```bash
63
+ xyteeecode run "explain this codebase" --model kira/qwen3.8-flash-free
64
+ ```
65
+
66
+ ### With other providers
67
+
68
+ Authenticate with any provider the CLI supports (Anthropic, OpenAI, Groq, and hundreds more via models.dev), either through the built-in `/login` flow or by adding provider config the same way as above.
69
+
70
+ ## Commands
71
+
72
+ - `xyteeecode` — launch the interactive terminal UI
73
+ - `xyteeecode run "<prompt>"` — run a single prompt in the current directory
74
+ - `xyteeecode models <provider>` — list available models for a provider
75
+ - `xyteeecode agent list` — list agents
76
+ - `xyteeecode mcp list` — list MCP servers
77
+ - `xyteeecode session list` — list past sessions
78
+ - `xyteeecode --help` — all commands and flags
79
+
80
+ ## Config
81
+
82
+ Global config lives at `~/.config/opencode/opencode.jsonc`. Project config lives in `.opencode/opencode.json` at your project root.
83
+
84
+ ## License
85
+
86
+ MIT
package/package.json CHANGED
@@ -1,10 +1,21 @@
1
1
  {
2
2
  "name": "xyteeecode",
3
- "version": "1.0.0",
4
- "description": "xyteeecode - AI coding agent CLI (rebranded opencode)",
3
+ "version": "1.0.1",
4
+ "description": "xyteeecode - AI coding agent CLI",
5
5
  "license": "MIT",
6
+ "homepage": "https://xyteee.com",
7
+ "keywords": [
8
+ "ai",
9
+ "coding",
10
+ "agent",
11
+ "cli",
12
+ "terminal",
13
+ "xyteeecode",
14
+ "llm"
15
+ ],
6
16
  "files": [
7
- "bin"
17
+ "bin",
18
+ "README.md"
8
19
  ],
9
20
  "bin": {
10
21
  "xyteeecode": "bin/opencode"
@@ -13,6 +24,6 @@
13
24
  "node": ">=18"
14
25
  },
15
26
  "optionalDependencies": {
16
- "xyteeecode-linux-arm64": "1.0.0"
27
+ "xyteeecode-linux-arm64": "1.0.1"
17
28
  }
18
29
  }