@jrcdev/boros-code 0.0.1 → 0.0.2

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 (3) hide show
  1. package/README.md +6 -11
  2. package/dist/cli.js +4 -4
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -22,7 +22,6 @@
22
22
 
23
23
  Boros is an agentic AI for the terminal, specialized in automated penetration testing and cybersecurity automation. It preserves the original framework and developer-focused UX while shifting brand identity.
24
24
 
25
- ![](https://gw.alicdn.com/imgextra/i1/O1CN01D2DviS1wwtEtMwIzJ_!!6000000006373-2-tps-1600-900.png)
26
25
 
27
26
  ## Why Boros?
28
27
 
@@ -89,10 +88,10 @@ Your browser does not support the video tag.
89
88
 
90
89
  Boros supports two authentication methods:
91
90
 
92
- - **Boros OAuth (recommended & free)**: sign in with your `boros.ai` account in a browser.
91
+ - **Qwen OAuth (recommended & free)**: sign in with your `boros.ai` account in a browser.
93
92
  - **OpenAI-compatible API**: use `OPENAI_API_KEY` (and optionally a custom base URL / model).
94
93
 
95
- #### Boros OAuth (recommended)
94
+ #### Qwen OAuth (recommended)
96
95
 
97
96
  Start `boros`, then run:
98
97
 
@@ -100,7 +99,7 @@ Start `boros`, then run:
100
99
  /auth
101
100
  ```
102
101
 
103
- Choose **Boros OAuth** and complete the browser flow. Your credentials are cached locally so you usually won't need to log in again.
102
+ Choose **Qwen OAuth** and complete the browser flow. Your credentials are cached locally so you usually won't need to log in again.
104
103
 
105
104
  #### OpenAI-compatible API (API key)
106
105
 
@@ -191,8 +190,8 @@ See [settings](https://jrcd3v.github.io/boros-code-docs/en/users/configuration/s
191
190
 
192
191
  | Agent | Model | Accuracy |
193
192
  | ----- | ------------------- | -------- |
194
- | Boros | Boros3-Coder-480A35 | 37.5% |
195
- | Boros | Boros3-Coder-30BA3B | 31.3% |
193
+ | Qwen | qwen3-Coder-480A35 | 37.5% |
194
+ | Qwen | qwen3-Coder-30BA3B | 31.3% |
196
195
 
197
196
  ## Ecosystem
198
197
 
@@ -207,11 +206,7 @@ If you encounter issues, check the [troubleshooting guide](https://jrcd3v.github
207
206
 
208
207
  To report a bug from within the CLI, run `/bug` and include a short title and repro steps.
209
208
 
210
- ## Connect with Us
211
-
212
- - Discord: https://discord.gg/ycKBjdNd
213
- - Dingtalk: https://qr.dingtalk.com/action/joingroup?code=v1,k1,+FX6Gf/ZDlTahTIRi8AEQhIaBlqykA0j+eBKKdhLeAE=&_dt_no_comment=1&origin=1
214
209
 
215
210
  ## Acknowledgments
216
211
 
217
- This project is based on [Google Gemini CLI](https://github.com/google-gemini/gemini-cli). We acknowledge and appreciate the excellent work of the Gemini CLI team. Our main contribution focuses on parser-level adaptations to better support Boros-Coder models.
212
+ This project is based on [Google Gemini CLI](https://github.com/google-gemini/gemini-cli) and [QwenLM qwen-code](https://github.com/QwenLM/qwen-code). We acknowledge and appreciate the excellent work of the Gemini CLI and Qwen team.
package/dist/cli.js CHANGED
@@ -151273,7 +151273,7 @@ __export(geminiContentGenerator_exports, {
151273
151273
  createGeminiContentGenerator: () => createGeminiContentGenerator
151274
151274
  });
151275
151275
  function createGeminiContentGenerator(config2, gcConfig) {
151276
- const version2 = "0.0.1";
151276
+ const version2 = "0.0.2";
151277
151277
  const userAgent2 = config2.userAgent || `QwenCode/${version2} (${process.platform}; ${process.arch})`;
151278
151278
  const baseHeaders = {
151279
151279
  "User-Agent": userAgent2
@@ -339285,7 +339285,7 @@ __name(getPackageJson, "getPackageJson");
339285
339285
  // packages/cli/src/utils/version.ts
339286
339286
  async function getCliVersion() {
339287
339287
  const pkgJson = await getPackageJson();
339288
- return "0.0.1";
339288
+ return "0.0.2";
339289
339289
  }
339290
339290
  __name(getCliVersion, "getCliVersion");
339291
339291
 
@@ -343346,7 +343346,7 @@ var formatDuration = /* @__PURE__ */ __name((milliseconds) => {
343346
343346
 
343347
343347
  // packages/cli/src/generated/git-commit.ts
343348
343348
  init_esbuild_shims();
343349
- var GIT_COMMIT_INFO = "6686c95";
343349
+ var GIT_COMMIT_INFO = "d6a5ab8";
343350
343350
 
343351
343351
  // packages/cli/src/utils/systemInfo.ts
343352
343352
  async function getNpmVersion() {
@@ -397194,7 +397194,7 @@ var GeminiAgent = class {
397194
397194
  name: APPROVAL_MODE_INFO[mode].name,
397195
397195
  description: APPROVAL_MODE_INFO[mode].description
397196
397196
  }));
397197
- const version2 = "0.0.1";
397197
+ const version2 = "0.0.2";
397198
397198
  return {
397199
397199
  protocolVersion: PROTOCOL_VERSION,
397200
397200
  agentInfo: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jrcdev/boros-code",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "engines": {
5
5
  "node": ">=20.0.0"
6
6
  },