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.
Files changed (2) hide show
  1. package/bin/cli.js +6 -6
  2. 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 @sam-agents/sam [options] [target-directory]\n');
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 @sam-agents/sam Interactive mode');
66
- log(' npx @sam-agents/sam --platform cursor Install for Cursor');
67
- log(' npx @sam-agents/sam --platform all Install for all platforms');
68
- log(' npx @sam-agents/sam ./myapp Install in ./myapp directory\n');
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(`@sam-agents/sam v${pkg.version}`);
290
+ log(`sam-agents v${pkg.version}`);
291
291
  return;
292
292
  }
293
293
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sam-agents",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "SAM (Smart Agent Manager) - Autonomous TDD agent system for Claude Code and Cursor",
5
5
  "bin": {
6
6
  "sam-agents": "./bin/cli.js"