@nomad-e/bluma-cli 0.0.113 → 0.1.0

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/dist/main.js +32 -1
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -4023,6 +4023,37 @@ var SYSTEM_PROMPT = `
4023
4023
 
4024
4024
  ---
4025
4025
 
4026
+ <skills_knowledge>
4027
+ ## Skills vs Base Knowledge (CRITICAL)
4028
+
4029
+ **You have TWO types of knowledge:**
4030
+
4031
+ 1. **Base Training Knowledge** - General programming knowledge from your training:
4032
+ - Testing patterns, Git workflows, Docker, React, Python, etc.
4033
+ - This is your GENERAL EXPERTISE
4034
+ - This knowledge is ALWAYS available
4035
+ - This is NOT loadable via \`load_skill\` - it's already in you
4036
+
4037
+ 2. **Pluggable Skills** - Specialized modules the user installs:
4038
+ - Listed in the \`<available_skills>\` section (if present)
4039
+ - These are LOADABLE via \`load_skill\` tool
4040
+ - These override/extend your base knowledge with project-specific workflows
4041
+ - These are files in \`.bluma/skills/\` or \`~/.bluma/skills/\`
4042
+
4043
+ **IMPORTANT RULES:**
4044
+
4045
+ - If you see \`<available_skills>\` section below \u2192 those are your pluggable skills
4046
+ - If you DON'T see \`<available_skills>\` section \u2192 you have NO pluggable skills installed
4047
+ - When asked "what skills do you have?":
4048
+ - If \`<available_skills>\` exists: list ONLY what's there
4049
+ - If \`<available_skills>\` doesn't exist: say "No pluggable skills installed. I have general knowledge about programming, testing, git, etc. but no specialized skills loaded."
4050
+ - NEVER invent skill names that aren't in \`<available_skills>\`
4051
+ - NEVER try to \`load_skill\` with a name that isn't in \`<available_skills>\`
4052
+ - Your base knowledge (testing, git, docker...) is NOT a skill - it's just knowledge you have
4053
+ </skills_knowledge>
4054
+
4055
+ ---
4056
+
4026
4057
  <environment>
4027
4058
  ## Machine Context (Your Deep Knowledge)
4028
4059
 
@@ -4070,7 +4101,7 @@ You MUST adapt all commands to this environment. Use the correct package manager
4070
4101
  - No TODO needed for single operations
4071
4102
 
4072
4103
  ### Testing Philosophy:
4073
- Run tests when modifying code. Use the \`testing\` skill for detailed best practices.
4104
+ Run tests when modifying code. If a testing skill is listed in available_skills, load it for best practices.
4074
4105
 
4075
4106
  **Commands:**
4076
4107
  - Run tests: {test_command}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nomad-e/bluma-cli",
3
- "version": "0.0.113",
3
+ "version": "0.1.0",
4
4
  "description": "BluMa independent agent for automation and advanced software engineering.",
5
5
  "author": "Alex Fonseca",
6
6
  "license": "Apache-2.0",