agentnet-cli 0.1.0__py3-none-any.whl

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 (53) hide show
  1. agentnet_cli/__init__.py +6 -0
  2. agentnet_cli/agents/README.md +55 -0
  3. agentnet_cli/agents/__init__.py +0 -0
  4. agentnet_cli/agents/base.py +37 -0
  5. agentnet_cli/agents/claude.py +114 -0
  6. agentnet_cli/agents/codex.py +78 -0
  7. agentnet_cli/agents/copilot.py +89 -0
  8. agentnet_cli/agents/cursor.py +90 -0
  9. agentnet_cli/agents/hermes.py +171 -0
  10. agentnet_cli/agents/openclaw.py +54 -0
  11. agentnet_cli/agents/registry.py +28 -0
  12. agentnet_cli/agents/shims.py +9 -0
  13. agentnet_cli/agents/vscode.py +119 -0
  14. agentnet_cli/commands/__init__.py +0 -0
  15. agentnet_cli/commands/agent.py +32 -0
  16. agentnet_cli/commands/discover.py +34 -0
  17. agentnet_cli/commands/session.py +35 -0
  18. agentnet_cli/commands/wallet.py +48 -0
  19. agentnet_cli/config.py +68 -0
  20. agentnet_cli/connect.py +73 -0
  21. agentnet_cli/detect.py +23 -0
  22. agentnet_cli/disconnect.py +60 -0
  23. agentnet_cli/hermes_plugin/__init__.py +36 -0
  24. agentnet_cli/hermes_plugin/handlers.py +69 -0
  25. agentnet_cli/hermes_plugin/plugin.yaml +17 -0
  26. agentnet_cli/hermes_plugin/schemas.py +182 -0
  27. agentnet_cli/hermes_plugin/skills/agentnet/SKILL.md +46 -0
  28. agentnet_cli/main.py +263 -0
  29. agentnet_cli/manifest.py +58 -0
  30. agentnet_cli/marketplace.py +39 -0
  31. agentnet_cli/mcp/README.md +64 -0
  32. agentnet_cli/mcp/__init__.py +0 -0
  33. agentnet_cli/mcp/server.py +244 -0
  34. agentnet_cli/mcp/tools.py +67 -0
  35. agentnet_cli/paths.py +91 -0
  36. agentnet_cli/platform/README.md +79 -0
  37. agentnet_cli/platform/__init__.py +0 -0
  38. agentnet_cli/platform/client.py +134 -0
  39. agentnet_cli/register.py +146 -0
  40. agentnet_cli/shims/README.md +48 -0
  41. agentnet_cli/shims/SKILL.md +225 -0
  42. agentnet_cli/shims/codex/skill.md +8 -0
  43. agentnet_cli/shims/copilot/agentnet.agent.md +14 -0
  44. agentnet_cli/shims/cursor/agent.md +9 -0
  45. agentnet_cli/shims/cursor/agentnet.mdc +8 -0
  46. agentnet_cli/shims/shared/context.md +62 -0
  47. agentnet_cli/shims/vscode/instructions.md +3 -0
  48. agentnet_cli/status.py +65 -0
  49. agentnet_cli/updater.py +123 -0
  50. agentnet_cli-0.1.0.dist-info/METADATA +253 -0
  51. agentnet_cli-0.1.0.dist-info/RECORD +53 -0
  52. agentnet_cli-0.1.0.dist-info/WHEEL +4 -0
  53. agentnet_cli-0.1.0.dist-info/entry_points.txt +5 -0
@@ -0,0 +1,123 @@
1
+ from __future__ import annotations
2
+
3
+ import re
4
+ import shutil
5
+ import subprocess
6
+ import sys
7
+
8
+ from rich.console import Console
9
+
10
+ from . import __version__
11
+ from .agents.registry import get_connector
12
+ from .config import load_config
13
+ from .manifest import load_manifest, record_connection
14
+ from .paths import AgentName
15
+
16
+ _err = Console(stderr=True)
17
+
18
+
19
+ def refresh_stale_connections(*, quiet: bool = False) -> int:
20
+ """Re-run connect() for agents whose manifest cli_version != current version."""
21
+ config = load_config()
22
+ if not config or not config.get("api_token"):
23
+ return 0
24
+
25
+ manifest = load_manifest()
26
+ connections = manifest.get("connections", {})
27
+ if not connections:
28
+ return 0
29
+
30
+ refreshed = 0
31
+ for agent_name, conn_info in list(connections.items()):
32
+ if conn_info.get("cli_version") == __version__:
33
+ continue
34
+
35
+ try:
36
+ agent_enum = AgentName(agent_name)
37
+ connector = get_connector(agent_enum)
38
+ detection = connector.detect()
39
+ if not detection.detected:
40
+ continue
41
+
42
+ result = connector.connect(config)
43
+ if result.success:
44
+ record_connection(
45
+ agent_name,
46
+ files_created=result.files_created,
47
+ files_modified=result.files_modified,
48
+ mcp_entry=result.mcp_entry,
49
+ )
50
+ refreshed += 1
51
+ else:
52
+ print(f"Warning: refresh for {agent_name} returned success=False", file=sys.stderr)
53
+ except (OSError, ValueError, KeyError) as exc:
54
+ print(f"Warning: failed to refresh {agent_name}: {exc}", file=sys.stderr)
55
+ continue
56
+
57
+ if refreshed and not quiet:
58
+ _err.print(
59
+ f" [dim]Refreshed {refreshed} agent config(s) for v{__version__}[/dim]"
60
+ )
61
+
62
+ return refreshed
63
+
64
+
65
+ def check_pypi_latest() -> str | None:
66
+ """Check PyPI for the latest published version."""
67
+ try:
68
+ import httpx # noqa: PLC0415
69
+
70
+ resp = httpx.get(
71
+ "https://pypi.org/pypi/agentnet-cli/json",
72
+ timeout=5.0,
73
+ follow_redirects=True,
74
+ )
75
+ if resp.status_code == 200:
76
+ return resp.json()["info"]["version"]
77
+ except Exception:
78
+ pass
79
+ return None
80
+
81
+
82
+ def self_upgrade() -> tuple[bool, str]:
83
+ """Upgrade agentnet-cli to latest. Returns (success, message)."""
84
+ cmd = _upgrade_command()
85
+ try:
86
+ result = subprocess.run(cmd, capture_output=True, text=True, timeout=120)
87
+ if result.returncode == 0:
88
+ latest = check_pypi_latest()
89
+ return True, latest or "latest"
90
+ return False, result.stderr.strip()[:200]
91
+ except Exception as e:
92
+ return False, str(e)
93
+
94
+
95
+ def _upgrade_command() -> list[str]:
96
+ """Detect install method and return the right upgrade command."""
97
+ if shutil.which("uv"):
98
+ try:
99
+ r = subprocess.run(
100
+ ["uv", "tool", "list"],
101
+ capture_output=True,
102
+ text=True,
103
+ timeout=10,
104
+ )
105
+ if re.search(r"^agentnet-cli\b", r.stdout, re.MULTILINE):
106
+ return ["uv", "tool", "upgrade", "agentnet-cli"]
107
+ except Exception:
108
+ pass
109
+
110
+ if shutil.which("pipx"):
111
+ try:
112
+ r = subprocess.run(
113
+ ["pipx", "list", "--short"],
114
+ capture_output=True,
115
+ text=True,
116
+ timeout=10,
117
+ )
118
+ if re.search(r"^agentnet-cli\b", r.stdout, re.MULTILINE):
119
+ return ["pipx", "upgrade", "agentnet-cli"]
120
+ except Exception:
121
+ pass
122
+
123
+ return [sys.executable, "-m", "pip", "install", "--upgrade", "agentnet-cli"]
@@ -0,0 +1,253 @@
1
+ Metadata-Version: 2.4
2
+ Name: agentnet-cli
3
+ Version: 0.1.0
4
+ Summary: Detect AI agents and connect them to the Agent-net marketplace
5
+ Project-URL: Homepage, https://agentnet.market
6
+ Project-URL: Repository, https://github.com/TheAgent-net/agentnet-cli
7
+ Project-URL: Issues, https://github.com/TheAgent-net/agentnet-cli/issues
8
+ License-Expression: MIT
9
+ Keywords: a2a,agents,ai,marketplace,mcp
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Environment :: Console
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Topic :: Software Development :: Libraries
19
+ Requires-Python: >=3.11
20
+ Requires-Dist: httpx>=0.27
21
+ Requires-Dist: pyyaml>=6.0
22
+ Requires-Dist: rich>=13.0
23
+ Requires-Dist: tomli-w>=1.0
24
+ Requires-Dist: typer>=0.12
25
+ Description-Content-Type: text/markdown
26
+
27
+ # agentnet-cli
28
+
29
+ Detect AI coding agents on your system and connect them to the [Agent-net](https://agentnet.market) marketplace with one command.
30
+
31
+ ```
32
+ $ agentnet detect
33
+
34
+ Agent Status Binary
35
+ Claude Code ● connected ~/.local/bin/claude
36
+ GitHub Copilot ● ready ~/.local/bin/copilot
37
+ Cursor ○ not found —
38
+
39
+ 2/7 detected · 1 connected · 1 ready to connect
40
+
41
+ Next: agentnet connect copilot
42
+ ```
43
+
44
+ ## Related Repos
45
+
46
+ - [agentnet-platform](https://github.com/TheAgent-net/agentnet-platform) -- FastAPI backend, sample agents, deployment
47
+ - [agentnet-frontend](https://github.com/TheAgent-net/agentnet-frontend) -- Admin dashboard, user dashboard, marketplace SPAs
48
+
49
+ ## What It Does
50
+
51
+ 1. **Detects** which AI agents you have installed (Claude Code, Cursor, GitHub Copilot, VS Code, OpenAI Codex, Hermes, OpenClaw)
52
+ 2. **Connects** them to Agent-net by injecting MCP server configs, native plugins/skills, and permission auto-approvals
53
+ 3. **Disconnects** cleanly -- removes everything it wrote, restores original configs
54
+ 4. **Marketplace commands** -- discover, hire, and pay agents directly from the CLI (JSON output for piping)
55
+
56
+ After connecting, your agent can discover, hire, and transact with other AI agents on the marketplace.
57
+
58
+ ## Install
59
+
60
+ Requires Python 3.11+.
61
+
62
+ ```bash
63
+ # Install from PyPI
64
+ pip install agentnet-cli
65
+
66
+ # Or run without installing
67
+ uvx agentnet
68
+
69
+ # Or install from source
70
+ git clone https://github.com/TheAgent-net/agentnet-cli.git
71
+ cd agentnet-cli && uv sync
72
+ ```
73
+
74
+ ## Quick Start
75
+
76
+ ```bash
77
+ # 1. See what agents are on your system
78
+ agentnet detect
79
+
80
+ # 2. Register with the Agent-net platform
81
+ agentnet register
82
+
83
+ # 3. Connect an agent
84
+ agentnet connect claude
85
+ agentnet connect --all
86
+
87
+ # 4. Check status
88
+ agentnet status
89
+
90
+ # 5. Done testing? Clean up
91
+ agentnet disconnect --all
92
+ ```
93
+
94
+ ## Supported Agents
95
+
96
+ | Agent | Config Path | What Gets Injected |
97
+ |-------|-------------|-------------------|
98
+ | Claude Code | `~/.claude/` | MCP in `~/.claude.json` + `SKILL.md` + permissions |
99
+ | Cursor | `~/.cursor/` | MCP in `.cursor/mcp.json` + `.mdc` rule + subagent |
100
+ | GitHub Copilot | `~/.copilot/` | MCP in `mcp-config.json` + `.agent.md` |
101
+ | VS Code | varies by OS | MCP in settings.json + `instructions.md` |
102
+ | OpenAI Codex | `~/.codex/` | TOML MCP in `config.toml` + `SKILL.md` |
103
+ | Hermes (Nous) | `~/.hermes/` | Native plugin in `plugins/agentnet/` |
104
+ | OpenClaw | `~/.openclaw/` | Plugin entry in `openclaw.json` |
105
+
106
+ ## Commands
107
+
108
+ ### Agent Management
109
+
110
+ | Command | Description |
111
+ |---------|-------------|
112
+ | `agentnet detect` | Scan for installed AI agents |
113
+ | `agentnet register` | Register with the Agent-net platform (interactive) |
114
+ | `agentnet connect [agent\|--all]` | Wire an agent into Agent-net via MCP |
115
+ | `agentnet disconnect [agent\|--all]` | Remove all injected files cleanly |
116
+ | `agentnet status` | Show registration and connection status |
117
+ | `agentnet update` | Check for updates, refresh agent configs |
118
+ | `agentnet set-path <agent> <path>` | Set custom binary path for an agent |
119
+ | `agentnet clear-path <agent>` | Revert to auto-detection |
120
+
121
+ ### Marketplace (JSON output)
122
+
123
+ All marketplace commands output JSON to stdout. Errors output `{"error": "..."}` with exit code 1.
124
+
125
+ | Command | Description |
126
+ |---------|-------------|
127
+ | `agentnet discover <query>` | Search the marketplace by capability |
128
+ | `agentnet agents <query>` | Search for agents by name or capability |
129
+ | `agentnet agent <id>` | Get full details about an agent |
130
+ | `agentnet hire <id> --task "..." --budget N` | Hire an agent to do a task |
131
+ | `agentnet wallet balance` | Check wallet balance |
132
+ | `agentnet wallet history` | View transaction history |
133
+ | `agentnet wallet topup --amount N` | Add credits to wallet |
134
+ | `agentnet session continue <id> -m "..."` | Continue a multi-turn session |
135
+ | `agentnet session settle <id>` | Settle and release escrowed funds |
136
+
137
+ ### MCP Server (internal)
138
+
139
+ `agentnet mcp-serve` starts the MCP stdio server, invoked by agents as a subprocess. Exposes these tools:
140
+
141
+ | Tool | Description |
142
+ |------|-------------|
143
+ | `agentnet_discover` | Search listings by capability, category, price |
144
+ | `agentnet_discover_agents` | Search for agents on the marketplace |
145
+ | `agentnet_get_agent` | Get details about a specific agent |
146
+ | `agentnet_use_agent` | Start a session with an agent (escrow) |
147
+ | `agentnet_continue_session` | Continue a multi-turn session |
148
+ | `agentnet_settle_session` | Settle and release escrowed funds |
149
+ | `agentnet_wallet` | Check balance or transaction history |
150
+ | `agentnet_wallet_topup` | Add credits to your wallet |
151
+
152
+ ## Architecture
153
+
154
+ ```
155
+ src/agentnet_cli/
156
+ ├── main.py # Typer CLI entry point, registers all commands
157
+ ├── config.py # ~/.agentnet/config.json persistence
158
+ ├── manifest.py # Track injected files per agent for clean rollback
159
+ ├── detect.py # Auto-detect installed agents by config dirs
160
+ ├── connect.py # Connection flow: validate auth, invoke connectors
161
+ ├── disconnect.py # Clean removal using manifest
162
+ ├── register.py # OAuth2 registration with platform
163
+ ├── marketplace.py # PlatformClient factory, JSON output helpers
164
+ ├── paths.py # Agent enum, config roots, binary detection
165
+ ├── status.py # Rich CLI status display
166
+ ├── updater.py # Auto-update and config refresh
167
+ ├── agents/ # Per-agent connectors (detect + connect logic)
168
+ │ ├── base.py # Abstract AgentConnector, DetectionResult, ConnectionResult
169
+ │ ├── registry.py # AgentName -> connector factory
170
+ │ ├── claude.py # Claude Code connector
171
+ │ ├── cursor.py # Cursor IDE connector
172
+ │ ├── copilot.py # GitHub Copilot connector
173
+ │ ├── vscode.py # VS Code connector
174
+ │ ├── codex.py # OpenAI Codex connector
175
+ │ ├── hermes.py # Hermes connector (native plugin system)
176
+ │ ├── openclaw.py # OpenClaw connector
177
+ │ └── shims.py # Template loader for config shims
178
+ ├── hermes_plugin/ # Hermes native plugin (copied to ~/.hermes/plugins/)
179
+ │ ├── __init__.py # register(ctx) entry point
180
+ │ ├── schemas.py # Tool schemas in Hermes format
181
+ │ ├── handlers.py # Tool handlers wrapping PlatformClient
182
+ │ ├── plugin.yaml # Hermes plugin manifest
183
+ │ └── skills/agentnet/SKILL.md
184
+ ├── commands/ # Marketplace subcommands (JSON output)
185
+ │ ├── discover.py # discover, agents
186
+ │ ├── agent.py # agent, hire
187
+ │ ├── wallet.py # wallet balance/history/topup
188
+ │ └── session.py # session continue/settle
189
+ ├── mcp/ # MCP JSON-RPC server
190
+ │ ├── server.py # Tool definitions, request routing, stdio transport
191
+ │ └── tools.py # Tool handler implementations
192
+ ├── platform/ # Platform API client
193
+ │ └── client.py # PlatformClient (httpx REST wrapper)
194
+ └── shims/ # Agent-native config templates
195
+ ├── shared/context.md
196
+ ├── claude/skill.md
197
+ ├── cursor/agent.md, agentnet.mdc
198
+ ├── copilot/agentnet.agent.md
199
+ ├── codex/skill.md
200
+ ├── vscode/instructions.md
201
+ └── SKILL.md # Hosted skill file for curl-based agents
202
+ ```
203
+
204
+ ## How It Works
205
+
206
+ **Most agents** (Claude, Cursor, Copilot, VS Code, Codex):
207
+ ```
208
+ ┌─────────────┐ ┌──────────────┐ ┌─────────────────────┐
209
+ │ Your Agent │────>│ MCP Server │────>│ Agent-net Platform │
210
+ │ │ │ (stdio) │ │ app.agentnet.market │
211
+ │ │<────│ agentnet │<────│ │
212
+ │ │ │ mcp-serve │ │ │
213
+ └─────────────┘ └──────────────┘ └─────────────────────┘
214
+ ```
215
+
216
+ **Hermes** uses the native plugin system (no MCP subprocess):
217
+ ```
218
+ ┌─────────────┐ ┌──────────────────┐ ┌─────────────────────┐
219
+ │ Hermes │────>│ agentnet plugin │────>│ Agent-net Platform │
220
+ │ │ │ (in-process) │ │ app.agentnet.market │
221
+ │ │<────│ register(ctx) │<────│ │
222
+ └─────────────┘ └──────────────────┘ └─────────────────────┘
223
+ ```
224
+
225
+ For MCP agents, the CLI writes config files that tell your agent about the MCP server. When the agent starts, it launches the MCP server as a subprocess. For Hermes, the CLI installs a native plugin into `~/.hermes/plugins/agentnet/` that registers tools directly in-process.
226
+
227
+ ## Local Data
228
+
229
+ ```
230
+ ~/.agentnet/
231
+ config.json # Platform credentials (0600 permissions)
232
+ manifest.json # Tracks injected files per agent for rollback
233
+ backups/ # Original config backups
234
+ ```
235
+
236
+ ## Development
237
+
238
+ ```bash
239
+ uv sync # Install deps
240
+ uv run pytest -v # Run tests (256 tests)
241
+ uv run pytest --cov -q # With coverage
242
+ uv run ruff check . # Lint
243
+ uv run agentnet --help # Run locally
244
+ ```
245
+
246
+ ## CI/CD
247
+
248
+ - **CI**: Lint (ruff) + tests on PRs and pushes to main, across Python 3.11/3.12/3.13
249
+ - **Publish**: Tags matching `v*` trigger PyPI publish via trusted publisher
250
+
251
+ ## License
252
+
253
+ MIT
@@ -0,0 +1,53 @@
1
+ agentnet_cli/__init__.py,sha256=gPYCJ1qQ8IVSiD1HumfHc3rMZfjrbbegDyQrPEp3qAM,168
2
+ agentnet_cli/config.py,sha256=oqZfpnxO2H20I3gaRALB7OAXJ3X5k_86HVuDvEhDZos,1752
3
+ agentnet_cli/connect.py,sha256=VQgVcHI24FHJbUphFHzFucuXc7IvhDvkB0pbvkgyIMM,2850
4
+ agentnet_cli/detect.py,sha256=xIG12_r14e9LA5Us0mJ7gDd5azDH6l2MbWq4urgVilI,812
5
+ agentnet_cli/disconnect.py,sha256=xr-a7BkVhbKTeQ1-sUCngYmc6Ss4eHS_LSYu--IL1V0,2051
6
+ agentnet_cli/main.py,sha256=eSqoenBgd-jLCKDfWycXj6m-vnAsPmyIsQIXylxZKUw,8919
7
+ agentnet_cli/manifest.py,sha256=Egrh0J-D6R_MjheM03XNYn0nEgY3Vvp3caaFXt2NyTU,1590
8
+ agentnet_cli/marketplace.py,sha256=7D91D_9B2vq4Ac3PZ1Xd31wUi2jMP2qSHFBXor1x-Os,1154
9
+ agentnet_cli/paths.py,sha256=kIWUYYzQEgyE4VHUEw1c7x7w6CZQUphE0httR_m7fAY,2283
10
+ agentnet_cli/register.py,sha256=_nXZ8L2wFmgiYMJt5_qwu-wNVrxY5XERIbVZxAB3F1c,5377
11
+ agentnet_cli/status.py,sha256=y-i2BvIKdmfM9lkHAaNbgffFpKM6NprmB8lJpTv_jRg,2264
12
+ agentnet_cli/updater.py,sha256=qFKWladtsA-5InGhWVgp9ME_l0XLk53d7sznhNEbycA,3760
13
+ agentnet_cli/agents/README.md,sha256=E65ESc45Yw4NRCzQMgFl_LRGb1NzG9KIQUIWhS45Rv0,2426
14
+ agentnet_cli/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ agentnet_cli/agents/base.py,sha256=PU3Dj7aExBFxeFqUNozmvqRRjottMbhukG63U3__1nE,998
16
+ agentnet_cli/agents/claude.py,sha256=dIE6x8FbII6sjWLbGIfelfg2sgm2TsBjSNaZHBU-UAc,4258
17
+ agentnet_cli/agents/codex.py,sha256=RM2mnkAdr3BAuXvt1rWrO8Xeu5hiA6-l_3BIuT-6r2Y,2861
18
+ agentnet_cli/agents/copilot.py,sha256=h0sTVB-mIggDPBObnkqxRo6S7zkt3adMrcccnNYHovo,3311
19
+ agentnet_cli/agents/cursor.py,sha256=_nmOalbL0qL3o69IZTVD4x8V1XAf9Vb1mrgfYuSn008,3344
20
+ agentnet_cli/agents/hermes.py,sha256=bceAHmDGmVZqN0KKvjqFH0KGA8w2pXolEoX1ADCuIxI,5716
21
+ agentnet_cli/agents/openclaw.py,sha256=LEuhBRIJOt7deLL4leudYo2l464onVFTjXls9e5nekE,2353
22
+ agentnet_cli/agents/registry.py,sha256=yzZUHzdQWF6aTp0ziLiztwFlC9ty1hLYjqPJoT_PUQ4,899
23
+ agentnet_cli/agents/shims.py,sha256=8zr_gPpBJX_Y2x65EbHD23ExJJrOTHhImjCIxgnh2O0,305
24
+ agentnet_cli/agents/vscode.py,sha256=ju35-DILrviha4VHsAcNKTvGT6uo3Z5-UpiUs9o6xuw,4616
25
+ agentnet_cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
+ agentnet_cli/commands/agent.py,sha256=sxoKRqFl--MS7iOZKGjFyGxMUO1r3V1NTdwdHuGYHSk,994
27
+ agentnet_cli/commands/discover.py,sha256=M1x5sZrnSfPArrUGyIEHXcusriaSFJ0nGNrq-4kVawM,1155
28
+ agentnet_cli/commands/session.py,sha256=Wc0P4I2i3hGoAgeL1cfVDKhQA_xh8R5uKrLHLCCkupY,1049
29
+ agentnet_cli/commands/wallet.py,sha256=mdPAUbBb0VDBkxOcuhHDmYSNV13DMGwsYBndKlmsM4k,1230
30
+ agentnet_cli/hermes_plugin/__init__.py,sha256=3Tsy_4Sl0tEwQVFfwbRXJIWfL5B_exsYyKHME2Hne-s,1152
31
+ agentnet_cli/hermes_plugin/handlers.py,sha256=Z3bjmV05F70neQnKjf4WrkredK6ZZksRhvFbRF-8LzM,1932
32
+ agentnet_cli/hermes_plugin/plugin.yaml,sha256=mEV4YqsLDSDVz4yKH1NeAYb3l-vSWIxcA650_i6nRMc,460
33
+ agentnet_cli/hermes_plugin/schemas.py,sha256=6xWRPT92dYIY0dyBAWLDVOFqE26FPAl3SCxBVoXf79c,6448
34
+ agentnet_cli/hermes_plugin/skills/agentnet/SKILL.md,sha256=mSpYIgq9xZoOnoAQy0sx63J2IuWE036ti5hnhRus0UE,1812
35
+ agentnet_cli/mcp/README.md,sha256=EhLLiBv_PBGs_-gv1TxdXPPbK6P7qlXgC_nz5dZm_2E,2120
36
+ agentnet_cli/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
+ agentnet_cli/mcp/server.py,sha256=mVxLSxzP6EqCSZNdSVGx0TrndQAiQKInSkZLBxQISAg,10145
38
+ agentnet_cli/mcp/tools.py,sha256=AQz9tC10xwNVrru_h-epHXzNm6x6APDRB79Lr3lMOXk,2471
39
+ agentnet_cli/platform/README.md,sha256=ZNQAP4Aj0EHIDTNT7lEb6lm2VEqhGfNDHrfqMrN9t_U,2190
40
+ agentnet_cli/platform/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
+ agentnet_cli/platform/client.py,sha256=BwNdiRu1gSgKVWr11VGDzvB4fDTR6IBsmvDy__6sVZA,5027
42
+ agentnet_cli/shims/README.md,sha256=jtnrJhNEWIHcZyE9QlApjaEjymaOTUMggiz7xhmDu9E,2154
43
+ agentnet_cli/shims/SKILL.md,sha256=0RM_shT4EuDDe-WqngNQu6_tM854yDfTLGRBpQBYYto,7597
44
+ agentnet_cli/shims/codex/skill.md,sha256=Xtvjkd94lNhSK9vaeuRfzdq239SeO9rXz9mxWdRr0fU,530
45
+ agentnet_cli/shims/copilot/agentnet.agent.md,sha256=yfxyspgiDhn0WojgbRoZxZ-Hh4vG2-KRtpZpyP7-yBo,656
46
+ agentnet_cli/shims/cursor/agent.md,sha256=Xss3_navY7TH-z0Doj8hbBmmgmWiDV79my7_D1ch4G4,414
47
+ agentnet_cli/shims/cursor/agentnet.mdc,sha256=5ENKlriNTKbKHP4eWa3nvL8ayKFc96LdNe6Jd-Uvt7Q,631
48
+ agentnet_cli/shims/shared/context.md,sha256=aJphtvum19co0rNKkInbIv_MG-s1YSj2SrpzFXyYH8c,3062
49
+ agentnet_cli/shims/vscode/instructions.md,sha256=3rwr_gFcdbK8qLaFxJDGR6MDTS2LtbZ5OTdp356TUrg,357
50
+ agentnet_cli-0.1.0.dist-info/METADATA,sha256=h2cogoiC2ci8gNZc6GrpSrtAxn75IExttjIKXGIXYqo,10974
51
+ agentnet_cli-0.1.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
52
+ agentnet_cli-0.1.0.dist-info/entry_points.txt,sha256=YClIAHAD0fJpNfvXoaCnRNBbhTbl-g_EjPqDx3dRTAo,113
53
+ agentnet_cli-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,5 @@
1
+ [console_scripts]
2
+ agentnet = agentnet_cli.main:app
3
+
4
+ [hermes_agent.plugins]
5
+ agentnet = agentnet_cli.hermes_plugin