claude-code-session-manager 0.38.4 → 0.38.5

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/index.html CHANGED
@@ -7,10 +7,10 @@
7
7
  <link rel="preconnect" href="https://fonts.googleapis.com">
8
8
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9
9
  <link href="https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;0,6..72,700;1,6..72,400&family=Geist:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap" rel="stylesheet">
10
- <script type="module" crossorigin src="./assets/index-B45c4uKJ.js"></script>
10
+ <script type="module" crossorigin src="./assets/index-DwjviHVo.js"></script>
11
11
  <link rel="modulepreload" crossorigin href="./assets/monaco-editor-BW5C4Iv1.js">
12
12
  <link rel="stylesheet" crossorigin href="./assets/monaco-editor-BTnBOi8r.css">
13
- <link rel="stylesheet" crossorigin href="./assets/index-BZeC568j.css">
13
+ <link rel="stylesheet" crossorigin href="./assets/index-CZrfXQpq.css">
14
14
  </head>
15
15
  <body class="bg-bg text-fg font-sans antialiased">
16
16
  <div id="root"></div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-session-manager",
3
- "version": "0.38.4",
3
+ "version": "0.38.5",
4
4
  "description": "Local cockpit for the Claude Code CLI — multi-tab terminal, full config surface, scheduler, voice dictation, and live observability.",
5
5
  "type": "module",
6
6
  "main": "src/main/index.cjs",
@@ -93,8 +93,12 @@ step is dropped and reported, not faked.** A shorter, honest demo beats a comple
93
93
  ## Output
94
94
 
95
95
  Default: one self-contained `.html` file (inline CSS/JS, base64-embedded images) written to
96
- `docs/feature-showcase/<feature-slug>.html` inside the target project see
97
- `feature.config.yaml` for the exact path convention, size ceiling, and the single-file vs.
96
+ `docs/feature-showcase/<project-slug>-<feature-slug>.html` inside **`~/Projects/Bilko`**
97
+ never inside the showcased project's own repo, even when the feature being showcased belongs
98
+ to a different project entirely. Bilko is the author/publisher of every showcase (same as
99
+ `blog-from-git`'s posts), is guaranteed to be locally writable across sessions, and these pages
100
+ are destined to eventually post to bilko.run — so output collects in one place from the start.
101
+ See `feature.config.yaml` for the exact path convention, size ceiling, and the single-file vs.
98
102
  folder fallback (used when embedded images would blow past the size ceiling). This is what
99
103
  "uploadable anywhere" means: no server, no relative asset paths, no build step — open the file
100
104
  or drop it on any static host and it works.
@@ -2,16 +2,23 @@
2
2
  # If prose in a SKILL.md ever disagrees with this file, this file wins.
3
3
 
4
4
  output:
5
- # Path is relative to the TARGET project's repo root (the project being showcased),
6
- # not this plugin's own repo.
7
- path_template: "docs/feature-showcase/{feature-slug}.html"
5
+ # Path is relative to ~/Projects/Bilko (the Bilko repo) ALWAYS, regardless of which
6
+ # project the showcased feature lives in. Bilko is the author/publisher of every showcase
7
+ # (same reason blog-from-git's posts live in Bilko, not in the project they're about) and
8
+ # these pages are destined to eventually be posted on bilko.run — Bilko is the one repo
9
+ # guaranteed to be locally writable across every session this skill runs in, and keeping
10
+ # output there means all showcases accumulate in one place instead of scattering across
11
+ # sibling repos. Never write the HTML into the target project's own repo.
12
+ base_repo: "~/Projects/Bilko"
13
+ path_template: "docs/feature-showcase/{project-slug}-{feature-slug}.html"
14
+ project_slug_rule: "kebab-case, the showcased project's own repo/registry slug (e.g. session-manager, signal-builder) — always prefixed so multi-project output never collides"
8
15
  feature_slug_rule: "kebab-case, derived from the confirmed feature name in :select"
9
16
  # Prefer one self-contained file. Only fall back to a folder when the size ceiling
10
17
  # below would be exceeded by inlining images.
11
18
  default_mode: single_file # single_file | folder
12
19
  folder_fallback_layout:
13
- html: "docs/feature-showcase/{feature-slug}/index.html"
14
- images: "docs/feature-showcase/{feature-slug}/screenshots/"
20
+ html: "docs/feature-showcase/{project-slug}-{feature-slug}/index.html"
21
+ images: "docs/feature-showcase/{project-slug}-{feature-slug}/screenshots/"
15
22
  single_file_size_ceiling_mb: 8 # switch to folder_fallback_layout above this
16
23
  never_upload_or_deploy_without_explicit_ask: true
17
24