dj-claude 0.1.8 → 0.1.9

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.
@@ -22,7 +22,7 @@ export function getPageHtml(wsPort) {
22
22
  <head>
23
23
  <meta charset="UTF-8">
24
24
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
25
- <title>DJ Claude | v 0.1.8</title>
25
+ <title>DJ Claude | v 0.1.9</title>
26
26
  <link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🔈</text></svg>">
27
27
  <link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
28
28
  <style>
@@ -111,7 +111,7 @@ export function getPageHtml(wsPort) {
111
111
  <!-- Welcome box -->
112
112
  <div class="ascii-box">
113
113
  <pre>╔═════════════════════════════════════════════╗</pre>
114
- <div style="display:flex"><pre>║</pre><pre style="flex:1;text-align:center">Welcome to DJ Claude <span class="dim">v 0.1.8</span></pre><pre>║</pre></div>
114
+ <div style="display:flex"><pre>║</pre><pre style="flex:1;text-align:center">Welcome to DJ Claude <span class="dim">v 0.1.9</span></pre><pre>║</pre></div>
115
115
  <pre>╚═════════════════════════════════════════════╝</pre>
116
116
  </div>
117
117
 
@@ -27,6 +27,6 @@ export function Header({ isPlaying, isStreaming, audioInitialized }) {
27
27
  statusSymbol = '●';
28
28
  statusLabel = 'Playing';
29
29
  }
30
- return (_jsxs(Box, { flexDirection: "column", alignItems: "center", children: [_jsx(Text, { color: "#E8704E", children: WELCOME_TOP }), _jsxs(Text, { color: "#E8704E", children: ['║ Welcome to DJ Claude ', _jsx(Text, { dimColor: true, children: "v 0.1.8" }), ' ║'] }), _jsx(Text, { color: "#E8704E", children: WELCOME_BTM }), _jsx(Text, { color: "#E8704E", children: BANNER }), _jsx(Text, { color: "#E8704E", dimColor: dim, children: `╔═════════════════════════╗\n║ ${statusSymbol} ${statusLabel.padEnd(14)} ║\n╚═════════════════════════╝` })] }));
30
+ return (_jsxs(Box, { flexDirection: "column", alignItems: "center", children: [_jsx(Text, { color: "#E8704E", children: WELCOME_TOP }), _jsxs(Text, { color: "#E8704E", children: ['║ Welcome to DJ Claude ', _jsx(Text, { dimColor: true, children: "v 0.1.9" }), ' ║'] }), _jsx(Text, { color: "#E8704E", children: WELCOME_BTM }), _jsx(Text, { color: "#E8704E", children: BANNER }), _jsx(Text, { color: "#E8704E", dimColor: dim, children: `╔═════════════════════════╗\n║ ${statusSymbol} ${statusLabel.padEnd(14)} ║\n╚═════════════════════════╝` })] }));
31
31
  }
32
32
  //# sourceMappingURL=Header.js.map
@@ -14,7 +14,7 @@ export function getApiKey() {
14
14
  if (!key) {
15
15
  console.error('\n' +
16
16
  ' \x1b[1m╔════════════════════════════════════════════════════╗\n' +
17
- ' ║ DJ Claude \x1b[0mv 0.1.8\x1b[1m — Live coding music for Agents ║\n' +
17
+ ' ║ DJ Claude \x1b[0mv 0.1.9\x1b[1m — Live coding music for Agents ║\n' +
18
18
  ' ╚════════════════════════════════════════════════════╝\x1b[0m\n' +
19
19
  '\n' +
20
20
  ' \x1b[1m─── About ─────────────────────────────────────────────\x1b[0m\n' +
@@ -76,7 +76,7 @@ const MOOD_PROMPTS = {
76
76
  // ---------------------------------------------------------------------------
77
77
  const server = new McpServer({
78
78
  name: 'dj-claude',
79
- version: '0.1.8',
79
+ version: '0.1.9',
80
80
  });
81
81
  // -- play_music -----------------------------------------------------------
82
82
  server.tool('play_music', 'Generate and play live music. Describe what you want to hear — a genre, mood, activity, or anything creative. DJ Claude will compose a Strudel pattern and play it through the speakers.', { prompt: z.string().describe('What kind of music to play, e.g. "jazzy lo-fi beats" or "intense drum and bass"') }, async ({ prompt }) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dj-claude",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "mcpName": "io.github.p-poss/dj-claude",
5
5
  "description": "AI-generated music in your terminal — DJ Claude CLI",
6
6
  "type": "module",