@nomad-e/bluma-cli 0.0.45 → 0.0.46
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/README.md +4 -4
- package/dist/main.js +5 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[](https://shields.io/)
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
<img src="https://pharmaseedevsa.blob.core.windows.net/pharmassee-dev-storage/bluma.png" alt="
|
|
8
|
+
<img src="https://pharmaseedevsa.blob.core.windows.net/pharmassee-dev-storage/bluma.png" alt="Screenshot BluMa CLI" width="1000"/>
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
11
|
BluMa CLI is an independent agent for automation and advanced software engineering. The project is a conversational assistant that interacts via terminal (CLI), built with React/Ink, supporting smart agents (LLM, OpenAI Azure), tool execution, persistent history, session management, and extensibility through external plugins/tools.
|
|
@@ -99,7 +99,7 @@ Add to your `~/.bashrc`, `~/.zshrc`, or equivalent:
|
|
|
99
99
|
```sh
|
|
100
100
|
export AZURE_OPENAI_ENDPOINT="https://..."
|
|
101
101
|
export AZURE_OPENAI_API_KEY="your_key"
|
|
102
|
-
export AZURE_OPENAI_API_VERSION="
|
|
102
|
+
export AZURE_OPENAI_API_VERSION="2025-01-01-preview"
|
|
103
103
|
export AZURE_OPENAI_DEPLOYMENT="bluma-gpt"
|
|
104
104
|
export GITHUB_PERSONAL_ACCESS_TOKEN="..."
|
|
105
105
|
export NOTION_API_TOKEN="..."
|
|
@@ -113,7 +113,7 @@ source ~/.bashrc # or whichever file you edited
|
|
|
113
113
|
```cmd
|
|
114
114
|
setx AZURE_OPENAI_ENDPOINT "https://..."
|
|
115
115
|
setx AZURE_OPENAI_API_KEY "your_key"
|
|
116
|
-
setx AZURE_OPENAI_API_VERSION "
|
|
116
|
+
setx AZURE_OPENAI_API_VERSION "2025-01-01-preview"
|
|
117
117
|
setx AZURE_OPENAI_DEPLOYMENT "bluma-gpt"
|
|
118
118
|
setx GITHUB_PERSONAL_ACCESS_TOKEN "..."
|
|
119
119
|
setx NOTION_API_TOKEN "..."
|
|
@@ -124,7 +124,7 @@ setx NOTION_API_TOKEN "..."
|
|
|
124
124
|
```powershell
|
|
125
125
|
[Environment]::SetEnvironmentVariable("AZURE_OPENAI_ENDPOINT", "https://...", "Machine")
|
|
126
126
|
[Environment]::SetEnvironmentVariable("AZURE_OPENAI_API_KEY", "your_key", "Machine")
|
|
127
|
-
[Environment]::SetEnvironmentVariable("AZURE_OPENAI_API_VERSION", "
|
|
127
|
+
[Environment]::SetEnvironmentVariable("AZURE_OPENAI_API_VERSION", "2025-01-01-preview", "Machine")
|
|
128
128
|
[Environment]::SetEnvironmentVariable("AZURE_OPENAI_DEPLOYMENT", "bluma-gpt", "Machine")
|
|
129
129
|
[Environment]::SetEnvironmentVariable("GITHUB_PERSONAL_ACCESS_TOKEN", "...", "Machine")
|
|
130
130
|
[Environment]::SetEnvironmentVariable("NOTION_API_TOKEN", "...", "Machine")
|
package/dist/main.js
CHANGED
|
@@ -1648,8 +1648,11 @@ import fs9 from "fs";
|
|
|
1648
1648
|
import path8 from "path";
|
|
1649
1649
|
var SYSTEM_PROMPT = `
|
|
1650
1650
|
|
|
1651
|
-
|
|
1652
|
-
|
|
1651
|
+
IDENTITY AND OBJECTIVE:
|
|
1652
|
+
Operate as a fully autonomous AI software engineer capable of managing end-to-end software development and maintenance tasks \u2014 including
|
|
1653
|
+
coding, refactoring, testing, documentation, environment setup, and repository management \u2014 with no human intervention required unless
|
|
1654
|
+
explicitly requested.
|
|
1655
|
+
|
|
1653
1656
|
You are BluMa, a fully AUTONOMOUS AI Software Engineer from NomadEngenuity.
|
|
1654
1657
|
Your sole objective is to complete the user's request from end to end, with maximum precision, efficiency, and autonomy.
|
|
1655
1658
|
You operate as a CLI agent with full permission to create, modify, delete files, and execute system commands including Git and shell commands.
|