@optima-chat/dev-skills 0.7.25 → 0.7.26

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 CHANGED
@@ -29,25 +29,30 @@ switch (command) {
29
29
  log('\nšŸ“¦ Optima Dev Skills', 'blue');
30
30
  log('\nClaude Code skills for Optima development team\n', 'cyan');
31
31
 
32
- log('Installed Commands:', 'yellow');
33
- log(' /logs <service> [lines] [environment] View service logs', 'cyan');
34
- log('\nExamples:', 'yellow');
35
- log(' /logs commerce-backend Stage, 50 lines', 'cyan');
36
- log(' /logs user-auth 100 Stage, 100 lines', 'cyan');
37
- log(' /logs mcp-host 200 prod Prod, 200 lines', 'cyan');
32
+ log('Available Commands:', 'yellow');
33
+ log(' optima-query-db <service> "<sql>" [env] Query database', 'cyan');
34
+ log(' optima-show-env <service> [env] Show service env vars', 'cyan');
35
+ log(' optima-generate-test-token [--env production] Generate test token', 'cyan');
36
+ log(' optima-grant-credits <email> --amount <n> [--env] Grant credits to user', 'cyan');
37
+ log(' optima-grant-subscription <email> --plan <p> [--env] Grant subscription', 'cyan');
38
+ log(' /logs <service> [lines] [env] View service logs (skill)', 'cyan');
39
+ log(' /restart-ecs <service> [env] Restart ECS service (skill)', 'cyan');
38
40
 
39
41
  log('\nSupported Services:', 'yellow');
40
42
  log(' commerce-backend user-auth mcp-host agentic-chat optima-logistics', 'cyan');
41
- log(' optima-scout billing browser-backend optima-generation', 'cyan');
43
+ log(' session-gateway optima-scout billing browser-backend optima-generation', 'cyan');
42
44
 
43
45
  log('\nEnvironments:', 'yellow');
44
46
  log(' stage (default) prod', 'cyan');
45
47
 
46
- log('\nCLI Commands:', 'yellow');
47
- log(' optima-dev-skills --version Show version', 'cyan');
48
- log(' optima-dev-skills --help Show this help', 'cyan');
48
+ log('\nExamples:', 'yellow');
49
+ log(' /logs commerce-backend 100 prod', 'cyan');
50
+ log(' optima-query-db user-auth "SELECT COUNT(*) FROM users" prod', 'cyan');
51
+ log(' optima-grant-credits user@example.com --amount 5000 --env prod', 'cyan');
49
52
 
50
- log('\nDocumentation:', 'yellow');
53
+ log('\nMore Info:', 'yellow');
54
+ log(' optima-dev-skills --version Show version', 'cyan');
55
+ log(' <command> --help Show command help', 'cyan');
51
56
  log(' https://github.com/Optima-Chat/optima-dev-skills\n', 'cyan');
52
57
  break;
53
58
  }
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@optima-chat/dev-skills",
3
- "version": "0.7.25",
3
+ "version": "0.7.26",
4
4
  "description": "Claude Code Skills for Optima development team - cross-environment collaboration tools",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -1,51 +0,0 @@
1
- {
2
- "permissions": {
3
- "allow": [
4
- "WebSearch",
5
- "WebFetch(domain:code.claude.com)",
6
- "WebFetch(domain:platform.claude.com)",
7
- "WebFetch(domain:github.com)",
8
- "Bash(gh repo view:*)",
9
- "Bash(gh repo clone:*)",
10
- "Bash(gh repo list:*)",
11
- "Read(//private/tmp/optima-docs/**)",
12
- "Read(//tmp/optima-docs/**)",
13
- "Bash(git init:*)",
14
- "Bash(gh repo create:*)",
15
- "Read(//private/tmp/optima-workspace/**)",
16
- "Read(//tmp/optima-workspace/**)",
17
- "Read(//tmp/optima-workspace/.claude/commands/**)",
18
- "Bash(git add:*)",
19
- "Bash(git push:*)",
20
- "Bash(find:*)",
21
- "Bash(git commit:*)",
22
- "Bash(aws logs get-log-events:*)",
23
- "Bash(npm install:*)",
24
- "Bash(optima-dev-skills:*)",
25
- "Bash(optima-generate-test-token:*)",
26
- "Bash(optima-query-db:*)",
27
- "Bash(gh variable set:*)",
28
- "Bash(npm publish:*)",
29
- "Bash(python3:*)",
30
- "Bash(gh api:*)",
31
- "Bash(curl -s http://auth.optima.chat/openapi.json)",
32
- "Bash(curl -s https://auth.optima.chat/openapi.json)",
33
- "Bash(cat:*)",
34
- "Bash(node /Users/verypro/optima-dev-skills/scripts/install.js:*)",
35
- "Bash(aws logs tail:*)",
36
- "Bash(grep:*)",
37
- "Bash(npm view:*)",
38
- "Bash(npm version:*)",
39
- "Bash(git checkout:*)",
40
- "Bash(git pull:*)",
41
- "Bash(node scripts/install.js:*)",
42
- "Bash(gh issue:*)",
43
- "Bash(npm run:*)",
44
- "Bash(gh pr:*)",
45
- "Bash(node:*)",
46
- "Bash(echo \"exit: $?\")"
47
- ],
48
- "deny": [],
49
- "ask": []
50
- }
51
- }