@nomad-e/bluma-cli 0.1.18 → 0.1.19
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/dist/config/skills/git-commit/LICENSE.txt +18 -0
- package/dist/config/skills/git-commit/SKILL.md +258 -0
- package/dist/config/skills/git-commit/references/REFERENCE.md +249 -0
- package/dist/config/skills/git-commit/scripts/validate_commit_msg.py +163 -0
- package/dist/config/skills/git-pr/LICENSE.txt +18 -0
- package/dist/config/skills/git-pr/SKILL.md +293 -0
- package/dist/config/skills/git-pr/references/REFERENCE.md +256 -0
- package/dist/config/skills/git-pr/scripts/validate_commits.py +112 -0
- package/dist/config/skills/pdf/LICENSE.txt +26 -0
- package/dist/config/skills/pdf/SKILL.md +327 -0
- package/dist/config/skills/pdf/references/FORMS.md +69 -0
- package/dist/config/skills/pdf/references/REFERENCE.md +52 -0
- package/dist/config/skills/pdf/scripts/create_report.py +59 -0
- package/dist/config/skills/pdf/scripts/merge_pdfs.py +39 -0
- package/dist/config/skills/skill-creator/LICENSE.txt +26 -0
- package/dist/config/skills/skill-creator/SKILL.md +229 -0
- package/dist/config/skills/xlsx/LICENSE.txt +18 -0
- package/dist/config/skills/xlsx/SKILL.md +298 -0
- package/dist/config/skills/xlsx/references/REFERENCE.md +337 -0
- package/dist/config/skills/xlsx/scripts/office/__init__.py +2 -0
- package/dist/config/skills/xlsx/scripts/office/__pycache__/__init__.cpython-312.pyc +0 -0
- package/dist/config/skills/xlsx/scripts/office/__pycache__/pack.cpython-312.pyc +0 -0
- package/dist/config/skills/xlsx/scripts/office/__pycache__/soffice.cpython-312.pyc +0 -0
- package/dist/config/skills/xlsx/scripts/office/__pycache__/unpack.cpython-312.pyc +0 -0
- package/dist/config/skills/xlsx/scripts/office/__pycache__/validate.cpython-312.pyc +0 -0
- package/dist/config/skills/xlsx/scripts/office/pack.py +58 -0
- package/dist/config/skills/xlsx/scripts/office/soffice.py +180 -0
- package/dist/config/skills/xlsx/scripts/office/unpack.py +63 -0
- package/dist/config/skills/xlsx/scripts/office/validate.py +122 -0
- package/dist/config/skills/xlsx/scripts/recalc.py +143 -0
- package/dist/main.js +187 -46
- package/package.json +1 -1
- package/dist/config/example.bluma-mcp.json.txt +0 -14
- package/dist/config/models_config.json +0 -78
- package/dist/skills/git-conventional/LICENSE.txt +0 -3
- package/dist/skills/git-conventional/SKILL.md +0 -83
- package/dist/skills/skill-creator/SKILL.md +0 -495
- package/dist/skills/testing/LICENSE.txt +0 -3
- package/dist/skills/testing/SKILL.md +0 -114
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"models": [
|
|
3
|
-
{
|
|
4
|
-
"id": "google/gemini-3.1-pro-preview-customtools",
|
|
5
|
-
"tier": "tools",
|
|
6
|
-
"task_type": "multi_tool",
|
|
7
|
-
"context_window": 1048576,
|
|
8
|
-
"pricing": {
|
|
9
|
-
"input_per_1m_tokens": "$2.00",
|
|
10
|
-
"output_per_1m_tokens": "$12.00"
|
|
11
|
-
},
|
|
12
|
-
"description": "Enhanced version of Gemini 3.1 Pro tuned specifically for reliable tool selection and function calling. Designed to avoid overusing generic shell tools when more targeted tools are available, making it ideal for complex coding agents and multi-tool workflows in the CLI.",
|
|
13
|
-
"best_for": [
|
|
14
|
-
"Workflows that involve many different tools (file operations, search, tests, shell) and require the model to pick the right one.",
|
|
15
|
-
"Coordinating multi-step coding tasks where safe and accurate tool use is more important than raw speed or cost.",
|
|
16
|
-
"Complex debugging or refactors that need mixing code edits, search, tests, and shell commands.",
|
|
17
|
-
"Agent-style tasks where tool misuse is risky and you want maximum reliability in tool choice."
|
|
18
|
-
],
|
|
19
|
-
"not_for": "Very simple edits, quick questions, or cheap one-off operations that qwen3.5-flash can handle more economically."
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
"id": "qwen/qwen3-coder-next",
|
|
23
|
-
"tier": "coder",
|
|
24
|
-
"task_type": "multi_file",
|
|
25
|
-
"context_window": 262144,
|
|
26
|
-
"pricing": {
|
|
27
|
-
"input_per_1m_tokens": "$0.12",
|
|
28
|
-
"output_per_1m_tokens": "$0.75"
|
|
29
|
-
},
|
|
30
|
-
"description": "Coder-focused MoE model optimized for long-horizon coding agents and local development workflows. Handles large codebases, multi-file refactors, and recovery from execution failures while remaining cost-effective for always-on agents.",
|
|
31
|
-
"best_for": [
|
|
32
|
-
"Large refactors across many files where the agent must keep track of a global design.",
|
|
33
|
-
"Implementing new subsystems (features, services, modules) with tests and documentation.",
|
|
34
|
-
"Agentic coding loops that involve planning, executing edits, running commands/tests, and iterating.",
|
|
35
|
-
"Complex bug-hunting sessions where the model must reason over many files and past attempts."
|
|
36
|
-
],
|
|
37
|
-
"not_for": "Tiny edits, trivial Q&A, or ultra-simple tasks where qwen3.5-flash is cheaper and fast enough."
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"id": "deepseek/deepseek-chat-v3.1",
|
|
41
|
-
"tier": "reasoning",
|
|
42
|
-
"task_type": "reasoning",
|
|
43
|
-
"context_window": 32768,
|
|
44
|
-
"pricing": {
|
|
45
|
-
"input_per_1m_tokens": "$0.15",
|
|
46
|
-
"output_per_1m_tokens": "$0.75"
|
|
47
|
-
},
|
|
48
|
-
"description": "Hybrid reasoning model supporting both thinking and non-thinking modes with strong performance on coding, tool use, and long-context reasoning. Good choice when deep structured reasoning or complex analysis is needed in addition to code generation.",
|
|
49
|
-
"best_for": [
|
|
50
|
-
"Deep reasoning on tricky bugs, architecture decisions, or algorithm design.",
|
|
51
|
-
"Analyzing logs, traces, or large textual outputs to identify root causes.",
|
|
52
|
-
"Complex code reviews or design reviews where clear, structured justification is needed.",
|
|
53
|
-
"Cases where you explicitly want more deliberate reasoning rather than only fast responses."
|
|
54
|
-
],
|
|
55
|
-
"not_for": "Purely mechanical edits or very simple tasks where a cheaper, faster model is sufficient."
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"id": "anthropic/claude-haiku-4.5",
|
|
59
|
-
"tier": "heavy",
|
|
60
|
-
"task_type": "complex",
|
|
61
|
-
"context_window": 200000,
|
|
62
|
-
"pricing": {
|
|
63
|
-
"input_per_1m_tokens": "$1.00",
|
|
64
|
-
"output_per_1m_tokens": "$5.00"
|
|
65
|
-
},
|
|
66
|
-
"description": "High-end, high-speed frontier model with extended thinking and strong performance on coding, reasoning, and computer-use tasks. Best reserved for the most complex, high-stakes workflows where you need frontier-level capability and robustness.",
|
|
67
|
-
"best_for": [
|
|
68
|
-
"Very large, high-risk changes to critical production code where maximum reliability matters.",
|
|
69
|
-
"Long, multi-phase agentic tasks that must not fail (e.g. migrations, deep refactors, safety-sensitive changes).",
|
|
70
|
-
"Scenarios where you want frontier-level coding performance and can afford higher cost.",
|
|
71
|
-
"Coordinating many sub-agents or parallel tool workflows for large projects."
|
|
72
|
-
],
|
|
73
|
-
"not_for": "Routine day-to-day coding tasks, quick fixes, or low-impact work where cheaper models are perfectly adequate."
|
|
74
|
-
}
|
|
75
|
-
],
|
|
76
|
-
"default_model": "qwen/qwen3-coder-next"
|
|
77
|
-
}
|
|
78
|
-
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: git-conventional
|
|
3
|
-
description: Git workflow expert. Handles commits, branches, PRs following Conventional Commits.
|
|
4
|
-
version: 1.0.0
|
|
5
|
-
author: NomadEngenuity
|
|
6
|
-
license: LICENSE.txt
|
|
7
|
-
tools:
|
|
8
|
-
required:
|
|
9
|
-
- shell_command
|
|
10
|
-
- command_status
|
|
11
|
-
- message
|
|
12
|
-
recommended:
|
|
13
|
-
- read_file_lines
|
|
14
|
-
- edit_tool
|
|
15
|
-
---
|
|
16
|
-
|
|
17
|
-
# Instructions
|
|
18
|
-
|
|
19
|
-
## Context
|
|
20
|
-
You are executing the git-conventional workflow. This skill ensures all Git operations follow best practices with Conventional Commits format.
|
|
21
|
-
|
|
22
|
-
## Procedure
|
|
23
|
-
|
|
24
|
-
### Step 1: Check Status
|
|
25
|
-
```bash
|
|
26
|
-
git status --short
|
|
27
|
-
```
|
|
28
|
-
Review what files will be committed.
|
|
29
|
-
|
|
30
|
-
### Step 2: Stage Changes
|
|
31
|
-
```bash
|
|
32
|
-
git add .
|
|
33
|
-
```
|
|
34
|
-
Or stage specific files if requested.
|
|
35
|
-
|
|
36
|
-
### Step 3: Review Staged Changes
|
|
37
|
-
```bash
|
|
38
|
-
git diff --staged
|
|
39
|
-
```
|
|
40
|
-
Understand what is being committed to write a good message.
|
|
41
|
-
|
|
42
|
-
### Step 4: Commit with Conventional Format
|
|
43
|
-
```bash
|
|
44
|
-
git commit -m "type(scope): description"
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
Format: `<type>(<scope>): <description>`
|
|
48
|
-
|
|
49
|
-
Types:
|
|
50
|
-
- feat: New feature
|
|
51
|
-
- fix: Bug fix
|
|
52
|
-
- docs: Documentation
|
|
53
|
-
- style: Formatting
|
|
54
|
-
- refactor: Code cleanup
|
|
55
|
-
- perf: Performance
|
|
56
|
-
- test: Tests
|
|
57
|
-
- chore: Maintenance
|
|
58
|
-
|
|
59
|
-
Rules:
|
|
60
|
-
- Max 72 chars
|
|
61
|
-
- Imperative mood: "add" not "added"
|
|
62
|
-
- Lowercase
|
|
63
|
-
- No trailing period
|
|
64
|
-
|
|
65
|
-
### Step 5: Push (if requested)
|
|
66
|
-
```bash
|
|
67
|
-
git push origin main
|
|
68
|
-
```
|
|
69
|
-
|
|
70
|
-
## Blocked Commands
|
|
71
|
-
Never use without explicit user approval:
|
|
72
|
-
- `git push --force`
|
|
73
|
-
- `git reset --hard`
|
|
74
|
-
- `git rebase -i` (public branches)
|
|
75
|
-
- `git branch -D`
|
|
76
|
-
|
|
77
|
-
## Error Reference
|
|
78
|
-
|
|
79
|
-
| Error | Cause | Fix |
|
|
80
|
-
|-------|-------|-----|
|
|
81
|
-
| nothing to commit | No staged changes | `git add .` first |
|
|
82
|
-
| rejected (non-fast-forward) | Remote has new commits | `git pull` first |
|
|
83
|
-
| permission denied | Auth issue | Check SSH key or token |
|