@optima-chat/dev-skills 0.7.23 → 0.7.24

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.
@@ -0,0 +1,51 @@
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
+ }
@@ -7,7 +7,7 @@ function parseArgs(args: string[]): { email: string; plan: string; months: numbe
7
7
  console.log(`Usage: optima-grant-subscription <email> [options]
8
8
 
9
9
  Options:
10
- --plan <id> Plan: free, pro, enterprise (default: enterprise)
10
+ --plan <id> Plan: trial, starter, pro, enterprise (default: pro)
11
11
  --months <n> Duration in months (default: 1)
12
12
  --env <env> Environment: stage, prod (default: stage)
13
13
  -h, --help Show this help`);
@@ -15,7 +15,7 @@ Options:
15
15
  }
16
16
 
17
17
  const email = args[0];
18
- let plan = 'enterprise';
18
+ let plan = 'pro';
19
19
  let months = 1;
20
20
  let env = 'stage';
21
21
 
@@ -25,8 +25,8 @@ Options:
25
25
  else if (args[i] === '--env' && args[i + 1]) { env = args[++i]; }
26
26
  }
27
27
 
28
- if (!['free', 'pro', 'enterprise'].includes(plan)) {
29
- console.error(`Unknown plan: ${plan}. Available: free, pro, enterprise`);
28
+ if (!['trial', 'starter', 'pro', 'enterprise'].includes(plan)) {
29
+ console.error(`Unknown plan: ${plan}. Available: trial, starter, pro, enterprise`);
30
30
  process.exit(1);
31
31
  }
32
32
  if (months < 1) { console.error('Months must be >= 1'); process.exit(1); }
@@ -7,14 +7,14 @@ function parseArgs(args) {
7
7
  console.log(`Usage: optima-grant-subscription <email> [options]
8
8
 
9
9
  Options:
10
- --plan <id> Plan: free, pro, enterprise (default: enterprise)
10
+ --plan <id> Plan: trial, starter, pro, enterprise (default: pro)
11
11
  --months <n> Duration in months (default: 1)
12
12
  --env <env> Environment: stage, prod (default: stage)
13
13
  -h, --help Show this help`);
14
14
  process.exit(0);
15
15
  }
16
16
  const email = args[0];
17
- let plan = 'enterprise';
17
+ let plan = 'pro';
18
18
  let months = 1;
19
19
  let env = 'stage';
20
20
  for (let i = 1; i < args.length; i++) {
@@ -28,8 +28,8 @@ Options:
28
28
  env = args[++i];
29
29
  }
30
30
  }
31
- if (!['free', 'pro', 'enterprise'].includes(plan)) {
32
- console.error(`Unknown plan: ${plan}. Available: free, pro, enterprise`);
31
+ if (!['trial', 'starter', 'pro', 'enterprise'].includes(plan)) {
32
+ console.error(`Unknown plan: ${plan}. Available: trial, starter, pro, enterprise`);
33
33
  process.exit(1);
34
34
  }
35
35
  if (months < 1) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@optima-chat/dev-skills",
3
- "version": "0.7.23",
3
+ "version": "0.7.24",
4
4
  "description": "Claude Code Skills for Optima development team - cross-environment collaboration tools",
5
5
  "main": "index.js",
6
6
  "bin": {