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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fa34fee0b26abe335f3288cc4593230f4f9e76b0b8f198594d5880c3055038f6
4
- data.tar.gz: 7836f199fc7a81192269391d4e26d68e99de85d116750e30c32bf39df421ed39
3
+ metadata.gz: d4255273d1d071bd791ad11b5da8cd3e452442c2ec5bc78aed0f594968589a79
4
+ data.tar.gz: 8814fbd0fa803dd30f1aaad76a0b4843f008065db1533bef87872fccf1cf8e9c
5
5
  SHA512:
6
- metadata.gz: 296f17a87edaf39c519c3054bfc790445aa45aa5295aee76b978c831465a6e4a312b2c541fc9d99424e7365ff9726055e05537ddb6b7b362ee5fb69bb5b3e83d
7
- data.tar.gz: 571a82f51bc2e5d61c77f214629d727c8c47ed1c7a8d0ba6c4ac7c3019ccd4ba93f7a6f85b81e7041fdb773aa11607ab1606a7a2f9adbee252ccc72e8e516a76
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 with MusaLCE clients (VSCode, Atom, Bitwig, Live), real-time code evaluation and error handling.
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)
@@ -201,7 +201,5 @@ module Musa::Sequencer
201
201
  @do_after << { bars: bars.rationalize, block: block }
202
202
  end
203
203
  end
204
-
205
- private_constant :EveryControl
206
204
  end
207
205
  end
@@ -597,7 +597,5 @@ module Musa::Sequencer
597
597
  @stop
598
598
  end
599
599
  end
600
-
601
- private_constant :MoveControl
602
600
  end
603
601
  end
@@ -198,8 +198,6 @@ module Musa::Sequencer
198
198
  @do_after << { bars: bars.rationalize, block: block }
199
199
  end
200
200
  end
201
-
202
- private_constant :PlayTimedControl
203
201
  end
204
202
  end
205
203
 
@@ -359,7 +359,5 @@ module Musa::Sequencer
359
359
  @do_after << { bars: bars.rationalize, block: block }
360
360
  end
361
361
  end
362
-
363
- private_constant :PlayControl
364
362
  end
365
363
  end
@@ -490,7 +490,5 @@ module Musa::Sequencer
490
490
 
491
491
  alias to_s inspect
492
492
  end
493
-
494
- private_constant :EventHandler
495
493
  end
496
494
  end
@@ -1,3 +1,3 @@
1
1
  module Musa
2
- VERSION = '0.43.0'.freeze
2
+ VERSION = '0.43.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: musa-dsl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.43.0
4
+ version: 0.43.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Sánchez Yeste