athena-mcp 1.0.1 → 1.0.3

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/README.md CHANGED
@@ -256,7 +256,7 @@ claude mcp add athena-gev-analyzer -- python3 ~/.athena/mcp/tools/gev_analyzer.p
256
256
 
257
257
  ```bash
258
258
  # Audit a Solidity contract
259
- claude "audit contracts/MyToken.sol"
259
+ claude "audit contracts/test-cases/Reentrancy.sol"
260
260
 
261
261
  # Full protocol audit with the agent workflow
262
262
  claude "read ~/.athena/AGENT-WORKFLOW-FINAL.md and audit this project"
package/install.js CHANGED
@@ -300,7 +300,7 @@ ${BOLD}Installed:${RESET}
300
300
  ${BOLD}Quick Start:${RESET}
301
301
 
302
302
  ${CYAN}# Audit a Solidity contract${RESET}
303
- claude "audit contracts/MyToken.sol"
303
+ claude "audit contracts/test-cases/Reentrancy.sol"
304
304
 
305
305
  ${CYAN}# Run Slither analysis directly${RESET}
306
306
  python3 ${INSTALL_DIR}/mcp/tools/slither_runner.py
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "athena-mcp",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
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