@1tool/js-boost 1.3.1 → 1.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1tool/js-boost",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "Laravel Boost-inspired CLI for JavaScript projects — generates agent files from your .ai/ folder",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -30,10 +30,7 @@ export function generateClaudeMd(guidelines, skills, mcpServers) {
30
30
  sections.push('');
31
31
  }
32
32
 
33
- // Include all guidelines inline
34
33
  if (guidelines.length > 0) {
35
- sections.push('## Project Guidelines');
36
- sections.push('');
37
34
  for (const g of guidelines) {
38
35
  sections.push(g.content);
39
36
  sections.push('');
@@ -42,7 +39,6 @@ export function generateClaudeMd(guidelines, skills, mcpServers) {
42
39
  sections.push('');
43
40
  }
44
41
 
45
- // MCP section
46
42
  if (Object.keys(mcpServers).length > 0) {
47
43
  sections.push(buildMcpMarkdownSection(mcpServers));
48
44
  sections.push('');
@@ -50,8 +46,5 @@ export function generateClaudeMd(guidelines, skills, mcpServers) {
50
46
  sections.push('');
51
47
  }
52
48
 
53
- sections.push('---');
54
- sections.push('*Auto-generated by `js-boost`. Source: `.ai/`*');
55
-
56
49
  return sections.join('\n');
57
50
  }