@kood/claude-code 0.5.6 → 0.5.7

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.js CHANGED
@@ -129,7 +129,7 @@ var generateIndexClaudeMd = (templates) => {
129
129
  return `### ${meta.name}
130
130
  - **\uC6A9\uB3C4:** ${meta.description}
131
131
  - **\uC8FC\uC694 \uC2A4\uD0DD:** ${meta.stack}
132
- - **\uAC00\uC774\uB4DC:** [docs/${template}/CLAUDE.md](docs/${template}/CLAUDE.md)`;
132
+ - **\uAC00\uC774\uB4DC:** [.claude/docs/${template}/CLAUDE.md](.claude/docs/${template}/CLAUDE.md)`;
133
133
  }).join("\n\n");
134
134
  return `# CLAUDE.md
135
135
 
@@ -163,7 +163,7 @@ var copySingleTemplate = async (template, targetDir) => {
163
163
  counter.files++;
164
164
  }
165
165
  const docsSrc = path4.join(templatePath, "docs");
166
- const docsDest = path4.join(targetDir, "docs");
166
+ const docsDest = path4.join(targetDir, ".claude", "docs");
167
167
  if (await fs2.pathExists(docsSrc)) {
168
168
  if (await fs2.pathExists(docsDest)) {
169
169
  await fs2.remove(docsDest);
@@ -175,7 +175,7 @@ var copySingleTemplate = async (template, targetDir) => {
175
175
  var copyMultipleTemplates = async (templates, targetDir) => {
176
176
  validateTargetDir(targetDir);
177
177
  const counter = { files: 0, directories: 0 };
178
- const docsDir = path4.join(targetDir, "docs");
178
+ const docsDir = path4.join(targetDir, ".claude", "docs");
179
179
  if (await fs2.pathExists(docsDir)) {
180
180
  await fs2.remove(docsDir);
181
181
  }
@@ -186,7 +186,7 @@ var copyMultipleTemplates = async (templates, targetDir) => {
186
186
  }
187
187
  await copyRecursive(
188
188
  templatePath,
189
- path4.join(targetDir, "docs", template),
189
+ path4.join(targetDir, ".claude", "docs", template),
190
190
  counter
191
191
  );
192
192
  }
@@ -839,7 +839,7 @@ var init = async (options) => {
839
839
 
840
840
  // src/index.ts
841
841
  var program = new Command();
842
- program.name("claude-code").description("Claude Code documentation installer for projects").version("0.5.6");
842
+ program.name("claude-code").description("Claude Code documentation installer for projects").version("0.5.7");
843
843
  program.option(
844
844
  "-t, --template <names>",
845
845
  "template names (comma-separated: tanstack-start,hono)"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kood/claude-code",
3
- "version": "0.5.6",
3
+ "version": "0.5.7",
4
4
  "description": "Claude Code documentation installer for projects",
5
5
  "type": "module",
6
6
  "bin": "./dist/index.js",
@@ -4,11 +4,11 @@
4
4
 
5
5
  <instructions>
6
6
  @../../commands/git.md
7
- @docs/guides/getting-started.md
8
- @docs/library/hono/index.md
9
- @docs/library/prisma/index.md
10
- @docs/library/t3-env/index.md
11
- @docs/library/zod/index.md
7
+ @.claude/docs/guides/getting-started.md
8
+ @.claude/docs/library/hono/index.md
9
+ @.claude/docs/library/prisma/index.md
10
+ @.claude/docs/library/t3-env/index.md
11
+ @.claude/docs/library/zod/index.md
12
12
  </instructions>
13
13
 
14
14
  ---
@@ -23,12 +23,12 @@
23
23
 
24
24
  <instructions>
25
25
  @../../commands/git.md
26
- @docs/library/nextjs/index.md
27
- @docs/library/tanstack-query/index.md
28
- @docs/library/prisma/index.md
29
- @docs/library/next-auth/index.md
30
- @docs/library/zod/index.md
31
- @docs/design.md
26
+ @.claude/docs/library/nextjs/index.md
27
+ @.claude/docs/library/tanstack-query/index.md
28
+ @.claude/docs/library/prisma/index.md
29
+ @.claude/docs/library/next-auth/index.md
30
+ @.claude/docs/library/zod/index.md
31
+ @.claude/docs/design.md
32
32
  </instructions>
33
33
 
34
34
  ---
@@ -21,10 +21,10 @@
21
21
 
22
22
  <instructions>
23
23
  @../../commands/git.md
24
- @docs/library/commander/index.md
25
- @docs/library/fs-extra/index.md
26
- @docs/library/prompts/index.md
27
- @docs/references/patterns.md
24
+ @.claude/docs/library/commander/index.md
25
+ @.claude/docs/library/fs-extra/index.md
26
+ @.claude/docs/library/prompts/index.md
27
+ @.claude/docs/references/patterns.md
28
28
  </instructions>
29
29
 
30
30
  ---
@@ -22,14 +22,14 @@
22
22
 
23
23
  <instructions>
24
24
  @../../commands/git.md
25
- @docs/library/tanstack-start/index.md
26
- @docs/library/tanstack-router/index.md
27
- @docs/library/tanstack-query/index.md
28
- @docs/library/prisma/index.md
29
- @docs/library/better-auth/index.md
30
- @docs/library/t3-env/index.md
31
- @docs/library/zod/index.md
32
- @docs/design.md
25
+ @.claude/docs/library/tanstack-start/index.md
26
+ @.claude/docs/library/tanstack-router/index.md
27
+ @.claude/docs/library/tanstack-query/index.md
28
+ @.claude/docs/library/prisma/index.md
29
+ @.claude/docs/library/better-auth/index.md
30
+ @.claude/docs/library/t3-env/index.md
31
+ @.claude/docs/library/zod/index.md
32
+ @.claude/docs/design.md
33
33
  </instructions>
34
34
 
35
35
  ---