@ayurak/aribot-cli 1.0.3 → 1.0.4

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/cli.js CHANGED
@@ -28,7 +28,7 @@ const program = new commander_1.Command();
28
28
  program
29
29
  .name('aribot')
30
30
  .description('AI-powered threat modeling CLI by Ayurak')
31
- .version('1.0.2');
31
+ .version('1.0.3');
32
32
  // Helper to get auth headers
33
33
  function getHeaders() {
34
34
  const apiKey = config.get('apiKey');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ayurak/aribot-cli",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "AI-powered threat modeling CLI by Ayurak. Automatically analyze diagrams, generate STRIDE threats, and get security recommendations.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/cli.ts CHANGED
@@ -27,7 +27,7 @@ const program = new Command();
27
27
  program
28
28
  .name('aribot')
29
29
  .description('AI-powered threat modeling CLI by Ayurak')
30
- .version('1.0.2');
30
+ .version('1.0.3');
31
31
 
32
32
  // Helper to get auth headers
33
33
  function getHeaders(): Record<string, string> {