@natjswenson/devlog 0.4.1 → 0.4.2

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/SKILL.md CHANGED
@@ -128,7 +128,7 @@ Once validated AND single-quoted, the values are safe to interpolate into the sh
128
128
  Entries are written in the user's voice. Resolve the voice directory **once** per run, in this order:
129
129
 
130
130
  1. If `config.voicePath` is set and (after expanding a leading `~`) is an existing directory → use it.
131
- 2. Else if `~/.claude/skills/ghostwriter/voice` exists → use it.
131
+ 2. Else if `~/.claude/ghostwriter/voice` exists → use it.
132
132
  3. Else → use the bundled fallback at `~/.claude/skills/devlog/voice` (shipped with the skill).
133
133
 
134
134
  From the resolved directory, read with the **Read tool**:
package/bin/devlog.js CHANGED
@@ -42,7 +42,7 @@ const SKILL_DEST = join(CONFIG_DIR, 'SKILL.md');
42
42
  const PREVIEW_DIR = join(PACKAGE_ROOT, 'preview');
43
43
  const VOICE_SRC_DIR = join(PACKAGE_ROOT, 'voice');
44
44
  const VOICE_DEST_DIR = join(CONFIG_DIR, 'voice');
45
- const GHOSTWRITER_VOICE_DIR = join(homedir(), '.claude', 'skills', 'ghostwriter', 'voice');
45
+ const GHOSTWRITER_VOICE_DIR = join(homedir(), '.claude', 'ghostwriter', 'voice');
46
46
 
47
47
  const log = {
48
48
  info: (msg) => console.log(msg),
@@ -3,7 +3,7 @@
3
3
  "branch": "main",
4
4
  "gitAuthor": "Your Name",
5
5
  "githubUser": "yourusername",
6
- "voicePath": "~/.claude/skills/ghostwriter/voice",
6
+ "voicePath": "~/.claude/ghostwriter/voice",
7
7
  "projects": [
8
8
  {
9
9
  "key": "midnight-side-quest",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@natjswenson/devlog",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "Release dev log generator \u2014 Claude Code skill + preview app for publishing version-release dev logs, written in your voice, to your site",
5
5
  "license": "MIT",
6
6
  "author": "Nate Swenson",