athena-mcp 1.0.0 → 1.0.2

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/install.js CHANGED
@@ -156,7 +156,7 @@ if (skipSystem) {
156
156
  } else {
157
157
  info('Installing Slither...');
158
158
  const pip = commandExists('pip3') ? 'pip3' : 'pip';
159
- run(`${pip} install slither-analyzer`, { optional: true });
159
+ run(`${pip} install --break-system-packages slither-analyzer`, { optional: true });
160
160
  if (commandExists('slither')) log('Slither installed');
161
161
  else warn('Slither install failed — install manually: pip install slither-analyzer');
162
162
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "athena-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Athena — Web3 smart contract security audit MCP tools + Skills for Claude Code",
5
5
  "main": "install.js",
6
6
  "bin": {
package/requirements.txt CHANGED
@@ -9,12 +9,13 @@ web3>=6.0.0
9
9
  eth-abi>=4.0.0
10
10
  eth-account>=0.10.0
11
11
 
12
- # Knowledge Base (RAG)
13
- chromadb>=0.4.0
14
- sentence-transformers>=2.2.0
15
-
16
12
  # Exploit Simulation / PoC Generation
17
13
  aiohttp>=3.9.0
18
14
 
19
15
  # Utilities
20
16
  python-dotenv>=1.0.0
17
+
18
+ # Optional: Knowledge Base (RAG) — heavy, install separately
19
+ # pip install chromadb sentence-transformers
20
+ # chromadb>=0.4.0
21
+ # sentence-transformers>=2.2.0