kradle 0.6.10 → 0.6.11
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/commands/init.js +1 -0
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/dist/commands/init.js
CHANGED
|
@@ -148,6 +148,7 @@ export default class Init extends Command {
|
|
|
148
148
|
// Display success message and next steps
|
|
149
149
|
this.log(pc.green(`\n✓ Project initialized successfully!`));
|
|
150
150
|
this.log(pc.dim(`\nProject location: ${targetDir}`));
|
|
151
|
+
this.log(pc.dim("AGENTS.md and CLAUDE.md were added to the project — LLM-based coding agents will read them to learn how to work with Kradle."));
|
|
151
152
|
this.log(pc.bold("\n📝 Next steps:"));
|
|
152
153
|
if (targetDir !== cwd) {
|
|
153
154
|
this.log(pc.cyan(` cd ${projectName}`));
|
package/oclif.manifest.json
CHANGED