@cyberstrike-io/cyberstrike 1.1.0

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/cyberstrike +5 -0
  2. package/package.json +36 -0
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+ console.error("CyberStrike v1.1.0 — binary not yet installed for your platform.")
3
+ console.error("Please reinstall: npm i -g cyberstrike@latest")
4
+ console.error("Or visit: https://github.com/CyberStrikeus/CyberStrike")
5
+ process.exit(1)
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@cyberstrike-io/cyberstrike",
3
+ "version": "1.1.0",
4
+ "description": "The first open-source AI agent built for offensive security. Autonomous pentesting from your terminal.",
5
+ "license": "AGPL-3.0-only",
6
+ "keywords": [
7
+ "cyberstrike",
8
+ "pentest",
9
+ "pentesting",
10
+ "security",
11
+ "offensive-security",
12
+ "red-team",
13
+ "bug-bounty",
14
+ "owasp",
15
+ "vulnerability",
16
+ "ai-agent",
17
+ "mcp",
18
+ "bolt",
19
+ "cli",
20
+ "hacking",
21
+ "infosec",
22
+ "appsec",
23
+ "web-security",
24
+ "cloud-security",
25
+ "exploitation",
26
+ "reconnaissance"
27
+ ],
28
+ "homepage": "https://github.com/CyberStrikeus/CyberStrike",
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "https://github.com/CyberStrikeus/CyberStrike.git"
32
+ },
33
+ "bin": {
34
+ "cyberstrike": "./bin/cyberstrike"
35
+ }
36
+ }