sam-agents 0.1.0 → 0.1.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/bin/cli.js +6 -6
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -56,16 +56,16 @@ function countFiles(dir) {
|
|
|
56
56
|
function showHelp() {
|
|
57
57
|
log('\n' + BOLD + ' SAM - Smart Agent Manager' + RESET);
|
|
58
58
|
log(' Autonomous TDD Agent System\n', CYAN);
|
|
59
|
-
log(' Usage: npx
|
|
59
|
+
log(' Usage: npx sam-agents [options] [target-directory]\n');
|
|
60
60
|
log(' Options:');
|
|
61
61
|
log(' --platform <name> Target platform: claude, cursor, all');
|
|
62
62
|
log(' --help, -h Show this help message');
|
|
63
63
|
log(' --version, -v Show version number\n');
|
|
64
64
|
log(' Examples:');
|
|
65
|
-
log(' npx
|
|
66
|
-
log(' npx
|
|
67
|
-
log(' npx
|
|
68
|
-
log(' npx
|
|
65
|
+
log(' npx sam-agents Interactive mode');
|
|
66
|
+
log(' npx sam-agents --platform cursor Install for Cursor');
|
|
67
|
+
log(' npx sam-agents --platform all Install for all platforms');
|
|
68
|
+
log(' npx sam-agents ./myapp Install in ./myapp directory\n');
|
|
69
69
|
log(' Supported Platforms:');
|
|
70
70
|
log(' claude - Claude Code CLI (.claude/commands/)');
|
|
71
71
|
log(' cursor - Cursor IDE (.cursor/rules/)\n');
|
|
@@ -287,7 +287,7 @@ async function main() {
|
|
|
287
287
|
|
|
288
288
|
if (args.includes('--version') || args.includes('-v')) {
|
|
289
289
|
const pkg = require('../package.json');
|
|
290
|
-
log(
|
|
290
|
+
log(`sam-agents v${pkg.version}`);
|
|
291
291
|
return;
|
|
292
292
|
}
|
|
293
293
|
|