vivekmind 0.15.6 → 0.15.7

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 -4
  2. package/cli.js +3 -3
  3. package/package.json +3 -1
package/README.md CHANGED
@@ -4,6 +4,8 @@
4
4
 
5
5
  <h1 align="center">VivekMind CLI</h1>
6
6
 
7
+ <h3 align="center"><a href="https://code.vivekmind.com">code.vivekmind.com</a></h3>
8
+
7
9
  <p align="center">
8
10
  <strong>Open-source terminal AI coding agent with full AWS Bedrock support</strong>
9
11
  </p>
@@ -48,7 +50,7 @@ VivekMind supports a wide range of AI providers out of the box. Set the correspo
48
50
 
49
51
  | Provider | Auth Type | Example Models |
50
52
  |----------|-----------|----------------|
51
- | **AWS Bedrock** | `bedrock` | Claude Opus 4.7, Amazon Nova Pro, Llama 4 Maverick |
53
+ | **AWS Bedrock** | `bedrock` | Claude (3/3.5/4.7), Amazon Nova (Pro/Lite/Micro), Llama (3/3.1/3.3/4), Qwen Coder, GLM, Mistral, Cohere |
52
54
  | **Anthropic** | `anthropic` | Claude Opus 4.7, Sonnet 4.6, Haiku 4.5 |
53
55
  | **Google Gemini** | `gemini` | Gemini 3 Pro, 2.5 Pro, 2.5 Flash |
54
56
  | **OpenAI** | `openai` | GPT-5.2, 5.4 Mini, 4.1, o3, o4-mini |
@@ -73,7 +75,7 @@ VivekMind supports a wide range of AI providers out of the box. Set the correspo
73
75
 
74
76
  ### AWS Bedrock Setup
75
77
 
76
- AWS Bedrock works with your existing AWS credentials. No additional API key is needed:
78
+ AWS Bedrock works with your existing AWS credentials. No additional API key is needed. VivekMind supports the full list of AWS Bedrock models, including **Anthropic Claude** (3/3.5/4.7), **Amazon Nova** (Pro/Lite/Micro), **Meta Llama** (3/3.3/4), **Qwen Coder** models, **GLMs**, **Mistral**, and **Cohere Command**:
77
79
 
78
80
  ```bash
79
81
  # Ensure AWS credentials are set
@@ -85,7 +87,7 @@ export AWS_SECRET_ACCESS_KEY=your-secret
85
87
  vivekmind
86
88
  ```
87
89
 
88
- Bedrock models are auto-discovered via `ListFoundationModels` API. Configure specific models in `settings.json`:
90
+ Bedrock models are auto-discovered via the `ListFoundationModels` API. You can configure and name specific models in `settings.json`:
89
91
 
90
92
  ```json
91
93
  {
@@ -379,7 +381,7 @@ VivekMind is a fork of [Qwen Code](https://github.com/QwenLM/qwen-code), origina
379
381
 
380
382
  Qwen Code is copyright (C) 2025 Google LLC and Alibaba Cloud, and is used under the Apache License, Version 2.0.
381
383
 
382
- VivekMind modifications are copyright (C) 2026 [VivekMind](https://vivekmind.com).
384
+ VivekMind modifications are copyright (C) 2026 [VivekMind](https://code.vivekmind.com).
383
385
 
384
386
  ## License
385
387
 
package/cli.js CHANGED
@@ -172983,7 +172983,7 @@ __export(geminiContentGenerator_exports, {
172983
172983
  createGeminiContentGenerator: () => createGeminiContentGenerator
172984
172984
  });
172985
172985
  function createGeminiContentGenerator(config2, gcConfig) {
172986
- const version2 = "0.15.6";
172986
+ const version2 = "0.15.7";
172987
172987
  const userAgent2 = config2.userAgent || `QwenCode/${version2} (${process.platform}; ${process.arch})`;
172988
172988
  const baseHeaders = {
172989
172989
  "User-Agent": userAgent2
@@ -501307,7 +501307,7 @@ __name(getPackageJson, "getPackageJson");
501307
501307
  // packages/cli/src/utils/version.ts
501308
501308
  async function getCliVersion() {
501309
501309
  const pkgJson = await getPackageJson();
501310
- return "0.15.6";
501310
+ return "0.15.7";
501311
501311
  }
501312
501312
  __name(getCliVersion, "getCliVersion");
501313
501313
 
@@ -588845,7 +588845,7 @@ var VivekMindAgent = class {
588845
588845
  async initialize(args2) {
588846
588846
  this.clientCapabilities = args2.clientCapabilities;
588847
588847
  const authMethods = buildAuthMethods();
588848
- const version2 = "0.15.6";
588848
+ const version2 = "0.15.7";
588849
588849
  return {
588850
588850
  protocolVersion: PROTOCOL_VERSION,
588851
588851
  agentInfo: {
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "vivekmind",
3
- "version": "0.15.6",
3
+ "version": "0.15.7",
4
4
  "description": "Open-source terminal AI agent with full AWS Bedrock support. Bring your own keys.",
5
+ "license": "Apache-2.0",
6
+ "homepage": "https://code.vivekmind.com",
5
7
  "repository": {
6
8
  "type": "git",
7
9
  "url": "git+https://github.com/Lnxtanx/vivekmind-cli.git"