ateschh-kit 1.1.0 → 1.2.1
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/.claude/settings.local.json +4 -1
- package/CHANGELOG.md +23 -0
- package/CLAUDE.md +16 -16
- package/bin/install.js +0 -3
- package/package.json +1 -2
- /package/{workflows → .claude/commands}/_TEMPLATE.md +0 -0
- /package/{workflows → .claude/commands}/brainstorm.md +0 -0
- /package/{workflows → .claude/commands}/build.md +0 -0
- /package/{workflows → .claude/commands}/deploy.md +0 -0
- /package/{workflows → .claude/commands}/design.md +0 -0
- /package/{workflows → .claude/commands}/finish.md +0 -0
- /package/{workflows → .claude/commands}/map-codebase.md +0 -0
- /package/{workflows → .claude/commands}/new-project.md +0 -0
- /package/{workflows → .claude/commands}/next.md +0 -0
- /package/{workflows → .claude/commands}/quick.md +0 -0
- /package/{workflows → .claude/commands}/requirements.md +0 -0
- /package/{workflows → .claude/commands}/resume.md +0 -0
- /package/{workflows → .claude/commands}/save.md +0 -0
- /package/{workflows → .claude/commands}/settings.md +0 -0
- /package/{workflows → .claude/commands}/status.md +0 -0
- /package/{workflows → .claude/commands}/test.md +0 -0
|
@@ -7,7 +7,10 @@
|
|
|
7
7
|
"Bash(mkdir -p /c/GENERATOR/workflows)",
|
|
8
8
|
"Bash(mkdir -p /c/GENERATOR/context-agent/scripts)",
|
|
9
9
|
"WebFetch(domain:raw.githubusercontent.com)",
|
|
10
|
-
"WebFetch(domain:api.github.com)"
|
|
10
|
+
"WebFetch(domain:api.github.com)",
|
|
11
|
+
"Bash(mkdir -p /c/GENERATOR/.claude/commands)",
|
|
12
|
+
"Bash(mv /c/GENERATOR/workflows/*.md /c/GENERATOR/.claude/commands/)",
|
|
13
|
+
"WebFetch(domain:github.com)"
|
|
11
14
|
]
|
|
12
15
|
}
|
|
13
16
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -67,6 +67,29 @@ Format: [Semantic Versioning](https://semver.org/)
|
|
|
67
67
|
|
|
68
68
|
---
|
|
69
69
|
|
|
70
|
+
## [1.2.1] — 2026-04-06
|
|
71
|
+
|
|
72
|
+
### Fixed
|
|
73
|
+
|
|
74
|
+
- `bin/install.js` no longer attempts to copy the removed `workflows/` directory
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
## [1.2.0] — 2026-04-06
|
|
79
|
+
|
|
80
|
+
### Changed
|
|
81
|
+
|
|
82
|
+
- Slash command files moved from `workflows/` to `.claude/commands/`
|
|
83
|
+
- Claude Code now natively recognizes all 15 commands with autocomplete
|
|
84
|
+
- `CLAUDE.md` references updated to reflect new file locations
|
|
85
|
+
- `package.json` files list updated (removed `workflows/`, `.claude/` already included)
|
|
86
|
+
|
|
87
|
+
### Removed
|
|
88
|
+
|
|
89
|
+
- `workflows/` directory (commands now live in `.claude/commands/`)
|
|
90
|
+
|
|
91
|
+
---
|
|
92
|
+
|
|
70
93
|
## [Unreleased]
|
|
71
94
|
|
|
72
95
|
- Wave-based parallel task execution for `/build`
|
package/CLAUDE.md
CHANGED
|
@@ -30,21 +30,21 @@ If no active project:
|
|
|
30
30
|
|
|
31
31
|
| Command | What it does | Workflow |
|
|
32
32
|
|---------|-------------|---------|
|
|
33
|
-
| `/new-project` | Start a new project |
|
|
34
|
-
| `/resume` | Continue where you left off |
|
|
35
|
-
| `/brainstorm` | Idea analysis + market research |
|
|
36
|
-
| `/requirements` | Define and lock tech stack |
|
|
37
|
-
| `/design` | Pages + UI design |
|
|
38
|
-
| `/build` | Write page/module code |
|
|
39
|
-
| `/test` | Test + fix bugs |
|
|
40
|
-
| `/deploy` | Deploy to production |
|
|
41
|
-
| `/status` | Progress report |
|
|
42
|
-
| `/save` | Save context (cross-platform) |
|
|
43
|
-
| `/finish` | Complete and archive project |
|
|
44
|
-
| `/next` | Auto-detect and run next step |
|
|
45
|
-
| `/quick` | Ad-hoc task without full pipeline |
|
|
46
|
-
| `/map-codebase` | Analyze existing codebase |
|
|
47
|
-
| `/settings` | View/edit configuration |
|
|
33
|
+
| `/new-project` | Start a new project | .claude/commands/new-project.md |
|
|
34
|
+
| `/resume` | Continue where you left off | .claude/commands/resume.md |
|
|
35
|
+
| `/brainstorm` | Idea analysis + market research | .claude/commands/brainstorm.md |
|
|
36
|
+
| `/requirements` | Define and lock tech stack | .claude/commands/requirements.md |
|
|
37
|
+
| `/design` | Pages + UI design | .claude/commands/design.md |
|
|
38
|
+
| `/build` | Write page/module code | .claude/commands/build.md |
|
|
39
|
+
| `/test` | Test + fix bugs | .claude/commands/test.md |
|
|
40
|
+
| `/deploy` | Deploy to production | .claude/commands/deploy.md |
|
|
41
|
+
| `/status` | Progress report | .claude/commands/status.md |
|
|
42
|
+
| `/save` | Save context (cross-platform) | .claude/commands/save.md |
|
|
43
|
+
| `/finish` | Complete and archive project | .claude/commands/finish.md |
|
|
44
|
+
| `/next` | Auto-detect and run next step | .claude/commands/next.md |
|
|
45
|
+
| `/quick` | Ad-hoc task without full pipeline | .claude/commands/quick.md |
|
|
46
|
+
| `/map-codebase` | Analyze existing codebase | .claude/commands/map-codebase.md |
|
|
47
|
+
| `/settings` | View/edit configuration | .claude/commands/settings.md |
|
|
48
48
|
|
|
49
49
|
When a command is run, read the corresponding workflow file and follow its steps.
|
|
50
50
|
|
|
@@ -145,7 +145,7 @@ ATESCHH-KIT/
|
|
|
145
145
|
├── .claude/rules/ ← Auto-loaded rules
|
|
146
146
|
├── agents/ ← Agent definitions
|
|
147
147
|
├── skills/ ← Skill definitions
|
|
148
|
-
├──
|
|
148
|
+
├── .claude/commands/ ← Slash command logic
|
|
149
149
|
├── context-agent/ ← Context management
|
|
150
150
|
├── .state/ ← System state (gitignored)
|
|
151
151
|
├── templates/ ← Project templates
|
package/bin/install.js
CHANGED
|
@@ -71,9 +71,6 @@ async function main() {
|
|
|
71
71
|
info('Copying .claude/rules/ ...')
|
|
72
72
|
copyDir(path.join(kitDir, '.claude'), path.join(targetDir, '.claude'))
|
|
73
73
|
|
|
74
|
-
info('Copying workflows/ ...')
|
|
75
|
-
copyDir(path.join(kitDir, 'workflows'), path.join(targetDir, 'workflows'))
|
|
76
|
-
|
|
77
74
|
info('Copying agents/ ...')
|
|
78
75
|
copyDir(path.join(kitDir, 'agents'), path.join(targetDir, 'agents'))
|
|
79
76
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ateschh-kit",
|
|
3
|
-
"version": "1.1
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "A structured AI development system for Claude Code and Antigravity",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|
|
@@ -32,7 +32,6 @@
|
|
|
32
32
|
"bin/",
|
|
33
33
|
"agents/",
|
|
34
34
|
"skills/",
|
|
35
|
-
"workflows/",
|
|
36
35
|
"templates/",
|
|
37
36
|
".claude/",
|
|
38
37
|
"CLAUDE.md",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|