@haposoft/cafekit 0.7.4 → 0.7.6
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/bin/install.js +9 -7
- package/package.json +1 -1
- package/src/claude/agents/debugger.md +1 -1
package/bin/install.js
CHANGED
|
@@ -543,7 +543,7 @@ function copyPlatformFiles(platformKey, results, options = {}) {
|
|
|
543
543
|
// Copy agent reference manuals (debugger manuals, etc.) recursively
|
|
544
544
|
const refsSource = path.join(__dirname, '../src', platform.sourceDir, 'references');
|
|
545
545
|
if (fs.existsSync(refsSource)) {
|
|
546
|
-
const refsDest = path.join(platform.
|
|
546
|
+
const refsDest = path.join(platform.destDir, 'references');
|
|
547
547
|
const refsExisted = fs.existsSync(refsDest);
|
|
548
548
|
copyRecursive(refsSource, refsDest, options);
|
|
549
549
|
|
|
@@ -1045,21 +1045,23 @@ async function main() {
|
|
|
1045
1045
|
}
|
|
1046
1046
|
console.log();
|
|
1047
1047
|
console.log('Next steps:');
|
|
1048
|
-
console.log(' 1. Start your AI editor');
|
|
1048
|
+
console.log(' 1. Start your AI editor (Claude Code or Antigravity)');
|
|
1049
1049
|
|
|
1050
|
-
// Show platform-specific
|
|
1050
|
+
// Show platform-specific hints
|
|
1051
1051
|
for (const platformKey of platforms) {
|
|
1052
1052
|
const platform = PLATFORMS[platformKey];
|
|
1053
1053
|
console.log(`\n For ${platform.name}:`);
|
|
1054
|
-
console.log(` Run: ${platform.commandPrefix}spec-init <feature-name>`);
|
|
1055
1054
|
if (platformKey === 'claude') {
|
|
1056
|
-
console.log('
|
|
1055
|
+
console.log(' Use skill: /hapo:specs <feature-description>');
|
|
1056
|
+
} else {
|
|
1057
|
+
console.log(` Instruct the agent to start a new feature or brainstorm`);
|
|
1057
1058
|
}
|
|
1058
1059
|
}
|
|
1059
1060
|
|
|
1060
|
-
console.log('\n 2.
|
|
1061
|
+
console.log('\n 2. The AI will automatically sync docs/ (Continuous Documentation)');
|
|
1062
|
+
console.log(' 3. Project API Keys are now securely isolated in .claude/.env');
|
|
1061
1063
|
if (!installerOptions.upgrade) {
|
|
1062
|
-
console.log('
|
|
1064
|
+
console.log(' 4. To refresh managed templates later, run installer with --upgrade');
|
|
1063
1065
|
}
|
|
1064
1066
|
console.log();
|
|
1065
1067
|
console.log('Documentation: https://github.com/haposoft/cafekit');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@haposoft/cafekit",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.6",
|
|
4
4
|
"description": "Spec-Driven Development workflow for AI coding assistants. Supports Claude Code and Antigravity with spec-first workflows plus Claude Code hapo: skills.",
|
|
5
5
|
"author": "Haposoft <nghialt@haposoft.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -17,7 +17,7 @@ You excel at:
|
|
|
17
17
|
- **Log Analysis**: Collecting and analyzing logs from server infrastructure, CI/CD pipelines (especially GitHub Actions), and application layers
|
|
18
18
|
- **Performance Optimization**: Identifying bottlenecks, developing optimization strategies, and implementing performance improvements
|
|
19
19
|
- **Test Execution & Analysis**: Running tests for debugging purposes, analyzing test failures, and identifying root causes
|
|
20
|
-
- **Strict Protocol (MANDATORY)**: YOU MUST READ ALL 8 debugging reference manuals located at
|
|
20
|
+
- **Strict Protocol (MANDATORY)**: YOU MUST READ ALL 8 debugging reference manuals located at `.claude/references/debugger/` (including `core-philosophy.md`, `verification-protocol.md`, `repomix-guidelines.md`, `parallel-agent-hydration.md`, etc.) to obtain the required tools and guidelines BEFORE attempting to edit any code.
|
|
21
21
|
|
|
22
22
|
**IMPORTANT**: Analyze the skills catalog and activate the skills that are needed for the task during the process.
|
|
23
23
|
|