musa-dsl 0.43.0 → 0.43.1
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.
- checksums.yaml +4 -4
- data/README.md +12 -42
- data/lib/musa-dsl/sequencer/base-sequencer-implementation-every.rb +0 -2
- data/lib/musa-dsl/sequencer/base-sequencer-implementation-move.rb +0 -2
- data/lib/musa-dsl/sequencer/base-sequencer-implementation-play-timed.rb +0 -2
- data/lib/musa-dsl/sequencer/base-sequencer-implementation-play.rb +0 -2
- data/lib/musa-dsl/sequencer/base-sequencer-implementation.rb +0 -2
- data/lib/musa-dsl/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d4255273d1d071bd791ad11b5da8cd3e452442c2ec5bc78aed0f594968589a79
|
|
4
|
+
data.tar.gz: 8814fbd0fa803dd30f1aaad76a0b4843f008065db1533bef87872fccf1cf8e9c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 61b3eb793d334844822636e2d8597c86dee2f353170d215328bf6dfc1be4aa24fdbe96c830584de377d99472d2259ef75a804f3c564fa5785f2430a14c1805a2
|
|
7
|
+
data.tar.gz: 7616c2dd4e24bf46714a64d48690d81989fa8ed41d99972f7c0aa2164607c8e72bf7fcd57b20963eed38d56420e889cd3421135d79df11d35464f2b2b1637005
|
data/README.md
CHANGED
|
@@ -41,39 +41,6 @@ Musa-DSL is a programming language DSL (Domain-Specific Language) based on Ruby
|
|
|
41
41
|
|
|
42
42
|
VSCode with the Ruby LSP extension also works well, though Ruby autocomplete and hover documentation are less complete.
|
|
43
43
|
|
|
44
|
-
### AI Composition Assistant: Claude Code Plugin
|
|
45
|
-
|
|
46
|
-
The fastest way to learn and compose with MusaDSL is through **[Nota](https://github.com/javier-sy/nota-plugin-for-claude)** — a plugin for [Claude Code](https://claude.ai/code) that provides:
|
|
47
|
-
|
|
48
|
-
- **`/nota:explain`** — Ask any question about MusaDSL and get sourced answers with working code examples
|
|
49
|
-
- **`/nota:think`** — Creative ideation across multiple musical dimensions
|
|
50
|
-
- **`/nota:code`** — Describe your musical intention in natural language and get verified MusaDSL code
|
|
51
|
-
- **`/nota:analyze`** — Structured analysis of your compositions
|
|
52
|
-
- **`/nota:best-practices`** — Consolidate recurring patterns into searchable best practices
|
|
53
|
-
|
|
54
|
-
The plugin includes a semantic knowledge base covering all MusaDSL documentation, API reference, 22+ demo projects, and 12 built-in composition best practices. Your compositions, analyses, and practices become searchable knowledge that enriches future sessions.
|
|
55
|
-
|
|
56
|
-
**Requirements:** [Ruby 3.4+](https://www.ruby-lang.org/) and a [Voyage AI](https://dash.voyageai.com/) API key (free tier is sufficient for personal use).
|
|
57
|
-
|
|
58
|
-
**Install in Claude Code:**
|
|
59
|
-
|
|
60
|
-
First, add the Nota marketplace:
|
|
61
|
-
```
|
|
62
|
-
/plugin marketplace add javier-sy/nota-plugin-for-claude
|
|
63
|
-
```
|
|
64
|
-
|
|
65
|
-
Then install the plugin:
|
|
66
|
-
```
|
|
67
|
-
/plugin install nota@yeste.studio
|
|
68
|
-
```
|
|
69
|
-
|
|
70
|
-
Then add your Voyage AI API key to your shell profile:
|
|
71
|
-
```
|
|
72
|
-
export VOYAGE_API_KEY="your-key-here"
|
|
73
|
-
```
|
|
74
|
-
|
|
75
|
-
Run `/nota:setup` to verify the installation.
|
|
76
|
-
|
|
77
44
|
### Framework Installation
|
|
78
45
|
|
|
79
46
|
Add to your Gemfile:
|
|
@@ -126,19 +93,12 @@ MusaDSL is a comprehensive ecosystem consisting of a core framework (musa-dsl) a
|
|
|
126
93
|
**Core Framework:**
|
|
127
94
|
- [**musa-dsl**](https://github.com/javier-sy/musa-dsl) - Main DSL framework for algorithmic composition and musical thinking
|
|
128
95
|
|
|
129
|
-
**MIDI Communication Stack
|
|
96
|
+
**MIDI Communication Stack** (used internally by musa-dsl for MIDI I/O):
|
|
130
97
|
- [**midi-events**](https://github.com/javier-sy/midi-events) - Low-level MIDI event definitions and protocols
|
|
131
98
|
- [**midi-parser**](https://github.com/javier-sy/midi-parser) - MIDI file parsing and analysis
|
|
132
99
|
- [**midi-communications**](https://github.com/javier-sy/midi-communications) - Cross-platform MIDI I/O abstraction layer
|
|
133
100
|
- [**midi-communications-macos**](https://github.com/javier-sy/midi-communications-macos) - macOS-specific MIDI native implementation
|
|
134
101
|
|
|
135
|
-
**Live Coding Environment (MusaLCE):**
|
|
136
|
-
- [**musalce-server**](https://github.com/javier-sy/musalce-server) - Live coding evaluation server with hot-reload capabilities
|
|
137
|
-
- [**MusaLCEClientForVSCode**](https://github.com/javier-sy/MusaLCEClientForVSCode) - Visual Studio Code extension for live coding
|
|
138
|
-
- [**MusaLCEClientForAtom**](https://github.com/javier-sy/MusaLCEClientForAtom) - Atom editor plugin for live coding
|
|
139
|
-
- [**MusaLCEforBitwig**](https://github.com/javier-sy/MusaLCEforBitwig) - Bitwig Studio integration for live coding
|
|
140
|
-
- [**MusaLCEforLive**](https://github.com/javier-sy/MusaLCEforLive) - Ableton Live integration for live coding
|
|
141
|
-
|
|
142
102
|
### musa-dsl Internal Architecture
|
|
143
103
|
|
|
144
104
|
The musa-dsl framework is organized in modular layers:
|
|
@@ -273,7 +233,7 @@ Comprehensive MusicXML score generation with hierarchical structure, multiple vo
|
|
|
273
233
|
|
|
274
234
|
### REPL - Live Coding Infrastructure
|
|
275
235
|
|
|
276
|
-
TCP-based server for live coding
|
|
236
|
+
TCP-based server for live coding — real-time code evaluation and error handling. Consumed by external REPL clients (editor extensions, custom evaluators).
|
|
277
237
|
|
|
278
238
|
**📖 [Complete Documentation](docs/subsystems/repl.md)**
|
|
279
239
|
|
|
@@ -283,6 +243,16 @@ Ruby refinements and metaprogramming utilities: Arrayfy, Hashify, ExplodeRanges,
|
|
|
283
243
|
|
|
284
244
|
**📖 [Complete Documentation](docs/subsystems/core-extensions.md)**
|
|
285
245
|
|
|
246
|
+
## More from the MusaDSL ecosystem
|
|
247
|
+
|
|
248
|
+
- [MusaDSL](https://musadsl.yeste.studio) — Ruby framework for algorithmic sound and musical composition.
|
|
249
|
+
- [MusaLCE](https://musalce.yeste.studio) — live coding environment for Ableton Live and Bitwig Studio.
|
|
250
|
+
- [Nota](https://nota.yeste.studio) — Claude Code plugin for AI-assisted MusaDSL composition.
|
|
251
|
+
- **Pulso** — Stream Deck plugin for MusaLCE Surface controls *(upcoming)*.
|
|
252
|
+
- **VST3 plugins** — collection of audio plugins for mixing and mastering *(upcoming)*.
|
|
253
|
+
|
|
254
|
+
For the full map — descriptions, how they relate, which one to pick for what — see [musa-ecosystem.yeste.studio](https://musa-ecosystem.yeste.studio).
|
|
255
|
+
|
|
286
256
|
## Author
|
|
287
257
|
|
|
288
258
|
* [Javier Sánchez Yeste](https://github.com/javier-sy)
|
data/lib/musa-dsl/version.rb
CHANGED