Skip to content

Commit c6876d6

Browse files
adslatonclaude
andauthored
Align shared-commands with template structure (#13)
* Align shared-commands with template structure - Remove unused commands not in template: - add-spec-comment.sh - add-user-story-comment.sh - create-epic.sh - create-user-story-issue.sh - Add missing template files: - .gitignore - lib/templates/spec-template.md - package.json (updated to match template exactly) - Keep only template commands: - analyze-issue.sh - create-spec-issue.sh - roadmap.sh 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]> * Address PR feedback - fix missing files and package.json - Update index.js to reference only template commands - Update setup.sh usage examples for current commands - Add proper author to package.json - All referenced files now exist and work correctly 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]> --------- Co-authored-by: Claude <[email protected]>
1 parent b9bbf7e commit c6876d6

File tree

9 files changed

+366
-688
lines changed

9 files changed

+366
-688
lines changed

shared-commands/.gitignore

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# Node modules
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
7+
# OS generated files
8+
.DS_Store
9+
.DS_Store?
10+
._*
11+
.Spotlight-V100
12+
.Trashes
13+
ehthumbs.db
14+
Thumbs.db
15+
16+
# Editor directories and files
17+
.vscode/
18+
.idea/
19+
*.swp
20+
*.swo
21+
*~
22+
23+
# Temporary files
24+
*.tmp
25+
*.temp
26+
.tmp/
27+
.temp/
28+
29+
# Log files
30+
*.log
31+
logs/
32+
33+
# Runtime data
34+
pids
35+
*.pid
36+
*.seed
37+
*.pid.lock
38+
39+
# Coverage directory used by tools like istanbul
40+
coverage/
41+
42+
# nyc test coverage
43+
.nyc_output
44+
45+
# Dependency directories
46+
jspm_packages/
47+
48+
# Optional npm cache directory
49+
.npm
50+
51+
# Optional eslint cache
52+
.eslintcache
53+
54+
# Optional REPL history
55+
.node_repl_history
56+
57+
# Output of 'npm pack'
58+
*.tgz
59+
60+
# Yarn Integrity file
61+
.yarn-integrity
62+
63+
# dotenv environment variables file
64+
.env
65+
.env.local
66+
.env.development.local
67+
.env.test.local
68+
.env.production.local
69+
70+
# parcel-bundler cache (https://parceljs.org/)
71+
.cache
72+
.parcel-cache
73+
74+
# Test output
75+
test-output/

shared-commands/commands/add-spec-comment.sh

Lines changed: 0 additions & 175 deletions
This file was deleted.

shared-commands/commands/add-user-story-comment.sh

Lines changed: 0 additions & 132 deletions
This file was deleted.

0 commit comments

Comments
 (0)