agentnet-cli 0.2.2__py3-none-any.whl → 0.2.3__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 (76) hide show
  1. agentnet_cli/__init__.py +0 -0
  2. agentnet_cli/cli/__init__.py +0 -0
  3. agentnet_cli/cli/core/__init__.py +0 -0
  4. agentnet_cli/cli/core/connect.py +0 -0
  5. agentnet_cli/cli/core/detect.py +0 -0
  6. agentnet_cli/cli/core/disconnect.py +0 -0
  7. agentnet_cli/cli/core/register.py +2 -4
  8. agentnet_cli/cli/core/setup_wizard.py +0 -0
  9. agentnet_cli/cli/core/status.py +0 -0
  10. agentnet_cli/cli/core/updater.py +0 -0
  11. agentnet_cli/cli/main.py +11 -2
  12. agentnet_cli/cli/marketplace/__init__.py +0 -0
  13. agentnet_cli/cli/marketplace/agent.py +0 -0
  14. agentnet_cli/cli/marketplace/discover.py +0 -0
  15. agentnet_cli/cli/marketplace/search.py +5 -7
  16. agentnet_cli/connectors/README.md +0 -0
  17. agentnet_cli/connectors/__init__.py +0 -0
  18. agentnet_cli/connectors/base.py +0 -0
  19. agentnet_cli/connectors/claude.py +0 -1
  20. agentnet_cli/connectors/codex.py +0 -0
  21. agentnet_cli/connectors/copilot.py +0 -0
  22. agentnet_cli/connectors/cursor.py +0 -0
  23. agentnet_cli/connectors/hermes.py +0 -0
  24. agentnet_cli/connectors/openclaw.py +0 -1
  25. agentnet_cli/connectors/registry.py +0 -0
  26. agentnet_cli/connectors/shims.py +0 -0
  27. agentnet_cli/connectors/templates/README.md +0 -0
  28. agentnet_cli/connectors/templates/SKILL.hosted.md +1 -1
  29. agentnet_cli/connectors/templates/codex/skill.md +0 -0
  30. agentnet_cli/connectors/templates/copilot/agentnet.agent.md +0 -0
  31. agentnet_cli/connectors/templates/cursor/agent.md +0 -0
  32. agentnet_cli/connectors/templates/cursor/agentnet.mdc +0 -0
  33. agentnet_cli/connectors/templates/shared/context.md +0 -0
  34. agentnet_cli/connectors/templates/shared/default-chat.md +0 -0
  35. agentnet_cli/connectors/templates/vscode/instructions.md +0 -0
  36. agentnet_cli/connectors/vscode.py +0 -0
  37. agentnet_cli/infra/__init__.py +0 -0
  38. agentnet_cli/infra/config.py +0 -0
  39. agentnet_cli/infra/manifest.py +0 -0
  40. agentnet_cli/infra/package_paths.py +0 -0
  41. agentnet_cli/infra/paths.py +0 -0
  42. agentnet_cli/infra/platform.py +74 -0
  43. agentnet_cli/integrations/claude/.claude-plugin/marketplace.json +0 -0
  44. agentnet_cli/integrations/claude/plugin/.claude-plugin/plugin.json +1 -1
  45. agentnet_cli/integrations/claude/plugin/.mcp.json +0 -0
  46. agentnet_cli/integrations/claude/plugin/agents/marketplace.md +0 -0
  47. agentnet_cli/integrations/claude/plugin/hooks/hooks.json +0 -0
  48. agentnet_cli/integrations/claude/plugin/skills/agentnet/SKILL.md +0 -0
  49. agentnet_cli/integrations/openclaw/.mcp.json +0 -0
  50. agentnet_cli/integrations/openclaw/index.js +0 -0
  51. agentnet_cli/integrations/openclaw/openclaw.plugin.json +1 -1
  52. agentnet_cli/integrations/openclaw/package.json +1 -1
  53. agentnet_cli/integrations/openclaw/skills/agentnet/SKILL.md +0 -0
  54. agentnet_cli/integrations/shared/discovery-skill.base.md +0 -0
  55. agentnet_cli/marketplace/__init__.py +0 -0
  56. agentnet_cli/marketplace/auth.py +2 -5
  57. agentnet_cli/marketplace/catalogs/__init__.py +0 -0
  58. agentnet_cli/marketplace/catalogs/claude_marketplace.py +0 -0
  59. agentnet_cli/marketplace/catalogs/clawhub.py +2 -0
  60. agentnet_cli/marketplace/client.py +0 -0
  61. agentnet_cli/marketplace/skills/__init__.py +0 -0
  62. agentnet_cli/marketplace/skills/client.py +0 -0
  63. agentnet_cli/marketplace/skills/discovery.py +3 -1
  64. agentnet_cli/marketplace/skills/skillsmp.py +0 -0
  65. agentnet_cli/tools/__init__.py +0 -0
  66. agentnet_cli/tools/handlers.py +10 -0
  67. agentnet_cli/tools/hermes/__init__.py +0 -0
  68. agentnet_cli/tools/hermes/handlers.py +2 -1
  69. agentnet_cli/tools/hermes/plugin.yaml +1 -1
  70. agentnet_cli/tools/hermes/schemas.py +0 -0
  71. agentnet_cli/tools/hermes/skills/agentnet/SKILL.md +0 -0
  72. agentnet_cli/tools/mcp_server.py +5 -5
  73. {agentnet_cli-0.2.2.dist-info → agentnet_cli-0.2.3.dist-info}/METADATA +25 -2
  74. {agentnet_cli-0.2.2.dist-info → agentnet_cli-0.2.3.dist-info}/RECORD +21 -20
  75. {agentnet_cli-0.2.2.dist-info → agentnet_cli-0.2.3.dist-info}/WHEEL +0 -0
  76. {agentnet_cli-0.2.2.dist-info → agentnet_cli-0.2.3.dist-info}/entry_points.txt +0 -0
agentnet_cli/__init__.py CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,7 +1,6 @@
1
1
  from __future__ import annotations
2
2
 
3
3
  import getpass
4
- import os
5
4
  import socket
6
5
  import time
7
6
  import webbrowser
@@ -11,11 +10,10 @@ from rich.console import Console
11
10
  from rich.table import Table
12
11
 
13
12
  from ...infra.config import load_config, save_config
13
+ from ...infra.platform import resolve_platform_url
14
14
  from ...marketplace.client import PlatformClient
15
15
 
16
16
  console = Console()
17
-
18
- DEFAULT_PLATFORM_URL = "https://app.agentnet.market"
19
17
  DEFAULT_LOGIN_TIMEOUT_SECONDS = 10 * 60
20
18
 
21
19
 
@@ -31,7 +29,7 @@ def register_command(
31
29
  if not typer.confirm(" Re-register?"):
32
30
  return
33
31
 
34
- url = platform_url or os.environ.get("AGENTNET_URL") or DEFAULT_PLATFORM_URL
32
+ url = resolve_platform_url(explicit_url=platform_url, use_config=False)
35
33
 
36
34
  client = PlatformClient(base_url=url)
37
35
  info = _browser_login(client)
File without changes
File without changes
File without changes
agentnet_cli/cli/main.py CHANGED
@@ -9,6 +9,7 @@ from rich.console import Console
9
9
  from rich.table import Table
10
10
 
11
11
  from agentnet_cli import __version__
12
+ from agentnet_cli.infra.platform import LOCAL_DEV_PLATFORM_URL, PRODUCTION_PLATFORM_URL
12
13
 
13
14
  app = typer.Typer(
14
15
  name="agentnet",
@@ -29,8 +30,16 @@ def main(
29
30
  version: bool = typer.Option(
30
31
  None, "--version", "-V", callback=_version_callback, is_eager=True, help="Show version",
31
32
  ),
33
+ dev: bool = typer.Option(
34
+ False,
35
+ "--dev",
36
+ help=f"Use local platform ({LOCAL_DEV_PLATFORM_URL}) for this session",
37
+ ),
32
38
  ) -> None:
33
39
  """Discover AI coding agents on your system and connect them to the Agent-net marketplace."""
40
+ if dev:
41
+ os.environ.setdefault("AGENTNET_ENV", "development")
42
+
34
43
  try:
35
44
  from .core.updater import maybe_auto_update # noqa: PLC0415
36
45
 
@@ -113,7 +122,7 @@ def detect() -> None:
113
122
  @app.command()
114
123
  def register(
115
124
  url: Optional[str] = typer.Option(
116
- None, "--url", help="Platform URL (default: https://app.agentnet.market)",
125
+ None, "--url", help=f"Platform URL (default: {PRODUCTION_PLATFORM_URL})",
117
126
  ),
118
127
  ) -> None:
119
128
  """Sign in through the browser and register a CLI identity."""
@@ -125,7 +134,7 @@ def register(
125
134
  @app.command()
126
135
  def setup(
127
136
  url: Optional[str] = typer.Option(
128
- None, "--url", help="Platform URL (default: https://app.agentnet.market)",
137
+ None, "--url", help=f"Platform URL (default: {PRODUCTION_PLATFORM_URL})",
129
138
  ),
130
139
  choose: bool = typer.Option(
131
140
  False,
File without changes
File without changes
File without changes
@@ -1,12 +1,12 @@
1
1
  from __future__ import annotations
2
2
 
3
- import json
4
3
  import os
5
4
  from typing import Any
6
5
 
7
6
  import typer
8
7
 
9
8
  from ...infra.config import load_config
9
+ from ...infra.platform import resolve_platform_url
10
10
  from ...marketplace.auth import die, output
11
11
  from ...marketplace.client import PlatformClient, PlatformError
12
12
  from ...marketplace.catalogs.claude_marketplace import ClaudeMarketplaceClient, ClaudeMarketplaceError
@@ -25,17 +25,15 @@ def _platform_client() -> PlatformClient | None:
25
25
  if not token:
26
26
  return None
27
27
 
28
- platform_url = os.environ.get("AGENTNET_PLATFORM_URL", "") or config.get(
29
- "platform_url", "https://app.agentnet.market",
30
- )
28
+ platform_url = resolve_platform_url(config=config)
31
29
  return PlatformClient(base_url=platform_url, api_token=token)
32
30
 
33
31
 
34
32
  def _skill_search(query: str, limit: int) -> dict[str, Any]:
35
33
  config = load_config() or {}
36
34
  with SkillDiscovery(
37
- platform_url=config.get("platform_url"),
38
- api_token=config.get("api_token"),
35
+ platform_url=resolve_platform_url(config=config),
36
+ api_token=config.get("api_token") or os.environ.get("AGENTNET_TOKEN", ""),
39
37
  openai_api_key=os.environ.get("OPENAI_API_KEY") or None,
40
38
  anthropic_api_key=os.environ.get("ANTHROPIC_API_KEY") or None,
41
39
  ) as disco:
@@ -118,7 +116,7 @@ def search(
118
116
  "skills": _skill_search(query, limit),
119
117
  "plugins": _plugin_search(query, limit, category),
120
118
  }
121
- print(json.dumps(result, indent=2))
119
+ output(result)
122
120
  return
123
121
 
124
122
  die("Not authenticated. Run 'agentnet setup' or set AGENTNET_TOKEN.")
File without changes
File without changes
File without changes
@@ -3,7 +3,6 @@ from __future__ import annotations
3
3
  import json
4
4
  import shutil
5
5
  import subprocess
6
- from pathlib import Path
7
6
  from typing import Any
8
7
 
9
8
  from ..infra.package_paths import bundled_claude_marketplace
File without changes
File without changes
File without changes
File without changes
@@ -3,7 +3,6 @@ from __future__ import annotations
3
3
  import json
4
4
  import shutil
5
5
  import subprocess
6
- from pathlib import Path
7
6
  from typing import Any
8
7
 
9
8
  from ..infra.package_paths import bundled_openclaw_plugin
File without changes
File without changes
File without changes
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: agentnet
3
- version: 0.2.2
3
+ version: 0.2.3
4
4
  description: >-
5
5
  Discover agents, listings, skills, and plugins for any task. Run `agentnet search`
6
6
  when the user needs help with anything — weather, translation, code review, design,
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,74 @@
1
+ from __future__ import annotations
2
+
3
+ import os
4
+ from typing import Any
5
+
6
+ PRODUCTION_PLATFORM_URL = "https://app.agentnet.market"
7
+ STAGING_PLATFORM_URL = "https://agent-net-server.narun.in"
8
+ LOCAL_DEV_PLATFORM_URL = "http://localhost:8000"
9
+
10
+ _ENV_PLATFORM_URLS: dict[str, str] = {
11
+ "production": PRODUCTION_PLATFORM_URL,
12
+ "prod": PRODUCTION_PLATFORM_URL,
13
+ "staging": STAGING_PLATFORM_URL,
14
+ "stage": STAGING_PLATFORM_URL,
15
+ "development": LOCAL_DEV_PLATFORM_URL,
16
+ "dev": LOCAL_DEV_PLATFORM_URL,
17
+ "local": LOCAL_DEV_PLATFORM_URL,
18
+ }
19
+
20
+ # Backward-compatible alias used by register and docs.
21
+ DEFAULT_PLATFORM_URL = PRODUCTION_PLATFORM_URL
22
+
23
+
24
+ def _normalize_url(url: str) -> str:
25
+ return url.strip().rstrip("/")
26
+
27
+
28
+ def _env_platform_url() -> str | None:
29
+ for key in ("AGENTNET_PLATFORM_URL", "AGENTNET_URL"):
30
+ raw = os.environ.get(key, "").strip()
31
+ if raw:
32
+ return _normalize_url(raw)
33
+ return None
34
+
35
+
36
+ def _env_named_platform_url() -> str | None:
37
+ env_name = os.environ.get("AGENTNET_ENV", "").strip().lower()
38
+ if not env_name:
39
+ return None
40
+ return _ENV_PLATFORM_URLS.get(env_name)
41
+
42
+
43
+ def resolve_platform_url(
44
+ *,
45
+ explicit_url: str | None = None,
46
+ config: dict[str, Any] | None = None,
47
+ use_config: bool = True,
48
+ ) -> str:
49
+ """Resolve the Agent-net platform base URL.
50
+
51
+ Precedence (highest first):
52
+ 1. ``explicit_url`` — CLI ``--url`` flag
53
+ 2. ``AGENTNET_PLATFORM_URL`` or legacy ``AGENTNET_URL`` env vars
54
+ 3. ``AGENTNET_ENV`` mapping (``development``/``staging``/``production``)
55
+ 4. ``platform_url`` from ``~/.agentnet/config.json`` (when ``use_config=True``)
56
+ 5. Production default (``https://app.agentnet.market``)
57
+ """
58
+ if explicit_url and explicit_url.strip():
59
+ return _normalize_url(explicit_url)
60
+
61
+ env_url = _env_platform_url()
62
+ if env_url:
63
+ return env_url
64
+
65
+ named_url = _env_named_platform_url()
66
+ if named_url:
67
+ return named_url
68
+
69
+ if use_config and config:
70
+ saved = config.get("platform_url")
71
+ if isinstance(saved, str) and saved.strip():
72
+ return _normalize_url(saved)
73
+
74
+ return PRODUCTION_PLATFORM_URL
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentnet",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Discover, hire, and pay AI agents on the Agent-net marketplace",
5
5
  "author": {
6
6
  "name": "Agent-net",
File without changes
File without changes
File without changes
File without changes
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "agentnet",
3
3
  "name": "AgentNet Marketplace",
4
- "version": "0.2.2",
4
+ "version": "0.2.3",
5
5
  "description": "Discover agents, listings, skills, and plugins on the Agent-net marketplace",
6
6
  "skills": ["skills/agentnet"],
7
7
  "contracts": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentnet/openclaw-plugin",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "AgentNet marketplace plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "license": "MIT",
File without changes
File without changes
@@ -5,6 +5,7 @@ import os
5
5
  from typing import Any, NoReturn
6
6
 
7
7
  from ..infra.config import load_config
8
+ from ..infra.platform import resolve_platform_url
8
9
  from .client import PlatformClient
9
10
 
10
11
 
@@ -15,11 +16,7 @@ def get_client() -> PlatformClient:
15
16
  token = config.get("api_token", "")
16
17
  if not token:
17
18
  die("Not authenticated. Run 'agentnet setup' or set AGENTNET_TOKEN.")
18
- platform_url = os.environ.get("AGENTNET_PLATFORM_URL", "")
19
- if not platform_url and config:
20
- platform_url = config.get("platform_url", "https://app.agentnet.market")
21
- if not platform_url:
22
- platform_url = "https://app.agentnet.market"
19
+ platform_url = resolve_platform_url(config=config)
23
20
  return PlatformClient(base_url=platform_url, api_token=token)
24
21
 
25
22
 
File without changes
File without changes
@@ -56,6 +56,8 @@ class ClawHubClient:
56
56
  family: str | None = None,
57
57
  ) -> dict[str, Any]:
58
58
  params: dict[str, Any] = {"q": query, "limit": limit}
59
+ if sort:
60
+ params["sort"] = sort
59
61
  if category:
60
62
  params["category"] = category
61
63
  if family:
File without changes
File without changes
File without changes
@@ -389,7 +389,9 @@ class SkillDiscovery:
389
389
  # Prefer richer description
390
390
  if len(r.get("description", "")) < len(existing.get("description", "")):
391
391
  r["description"] = existing["description"]
392
- seen[key] = r
392
+ for alias, value in list(seen.items()):
393
+ if value is existing:
394
+ seen[alias] = r
393
395
  else:
394
396
  existing["_sources"] = existing.get("_sources", {existing.get("source", "")})
395
397
  existing["_sources"].add(r.get("source", ""))
File without changes
File without changes
@@ -51,6 +51,16 @@ class ToolHandlers:
51
51
  )
52
52
  self._agent_id = agent_id
53
53
 
54
+ def close(self) -> None:
55
+ self._client.close()
56
+ self._discovery.close()
57
+
58
+ def __enter__(self) -> "ToolHandlers":
59
+ return self
60
+
61
+ def __exit__(self, *args: Any) -> None:
62
+ self.close()
63
+
54
64
  def discover(
55
65
  self,
56
66
  *,
File without changes
@@ -5,6 +5,7 @@ import os
5
5
  from typing import Any
6
6
 
7
7
  from agentnet_cli.infra.config import load_config
8
+ from agentnet_cli.infra.platform import resolve_platform_url
8
9
  from agentnet_cli.tools.handlers import ToolHandlers
9
10
 
10
11
  _NO_TOKEN_ERROR = json.dumps({"error": "Not registered. Run 'agentnet setup' first."})
@@ -15,7 +16,7 @@ def _get_handlers() -> ToolHandlers | None:
15
16
  config = load_config()
16
17
  if not token and config:
17
18
  token = config.get("api_token", "")
18
- platform_url = (config or {}).get("platform_url", "https://app.agentnet.market")
19
+ platform_url = resolve_platform_url(config=config)
19
20
  agent_id = (config or {}).get("agent_id", "")
20
21
  if not token:
21
22
  return None
@@ -1,5 +1,5 @@
1
1
  name: agentnet
2
- version: "0.2.2"
2
+ version: "0.2.3"
3
3
  description: >-
4
4
  Agent-net marketplace discovery. Use whenever the user needs an external
5
5
  product, service, agent, skill, or plugin — always call agentnet_search first.
File without changes
File without changes
@@ -7,6 +7,7 @@ from typing import Any
7
7
 
8
8
  from .. import __version__
9
9
  from ..infra.config import load_config
10
+ from ..infra.platform import resolve_platform_url
10
11
  from .handlers import ToolHandlers
11
12
 
12
13
  _CORE_TOOL_NAMES = frozenset({
@@ -211,11 +212,8 @@ def serve() -> None:
211
212
  if not token and config:
212
213
  token = config.get("api_token", "")
213
214
 
214
- platform_url = ""
215
- agent_id = ""
216
- if config:
217
- platform_url = config.get("platform_url", "https://app.agentnet.market")
218
- agent_id = config.get("agent_id", "")
215
+ platform_url = resolve_platform_url(config=config)
216
+ agent_id = config.get("agent_id", "") if config else ""
219
217
 
220
218
  if not token:
221
219
  sys.stderr.write("AGENTNET_TOKEN not set and no config found\n")
@@ -318,3 +316,5 @@ def serve() -> None:
318
316
  _write_response(_error_response(err_id, -32603, "Internal error"))
319
317
  except Exception:
320
318
  pass
319
+
320
+ handlers.close()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentnet-cli
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: Detect AI agents and connect them to the Agent-net marketplace
5
5
  Project-URL: Homepage, https://agentnet.market
6
6
  Project-URL: Repository, https://github.com/TheAgent-net/agentnet-cli
@@ -229,11 +229,34 @@ For MCP agents, the CLI writes config files that tell your agent about the MCP s
229
229
  backups/ # Original config backups
230
230
  ```
231
231
 
232
+ ## Environments
233
+
234
+ PyPI installs default to production (`https://app.agentnet.market`) with no configuration.
235
+
236
+ | Environment | How to target | URL |
237
+ |-------------|---------------|-----|
238
+ | Production (default) | *(none)* | `https://app.agentnet.market` |
239
+ | Staging | `AGENTNET_ENV=staging` | `https://agent-net-server.narun.in` |
240
+ | Local dev | `agentnet --dev setup` or `AGENTNET_ENV=development` | `http://localhost:8000` |
241
+
242
+ Override the URL directly at any time:
243
+
244
+ ```bash
245
+ # Explicit URL (highest precedence)
246
+ export AGENTNET_PLATFORM_URL=http://localhost:8000
247
+ agentnet setup
248
+
249
+ # Or per command
250
+ agentnet setup --url http://localhost:8000
251
+ ```
252
+
253
+ Precedence: `--url` flag → `AGENTNET_PLATFORM_URL` → legacy `AGENTNET_URL` → `AGENTNET_ENV` → saved `~/.agentnet/config.json` → production default.
254
+
232
255
  ## Development
233
256
 
234
257
  ```bash
235
258
  uv sync # Install deps
236
- uv run pytest -v # Run tests (256 tests)
259
+ uv run pytest -v # Run tests (354 tests)
237
260
  uv run pytest --cov -q # With coverage
238
261
  uv run ruff check . # Lint
239
262
  uv run agentnet --help # Run locally
@@ -1,32 +1,32 @@
1
1
  agentnet_cli/__init__.py,sha256=gPYCJ1qQ8IVSiD1HumfHc3rMZfjrbbegDyQrPEp3qAM,168
2
2
  agentnet_cli/cli/__init__.py,sha256=HAYsF5EIqqeT9RVCPGy86AXT6GfOcyVSpgQhFuoaPjk,43
3
- agentnet_cli/cli/main.py,sha256=H_ymLTsHf2nh1ODH7UQk_sP-i_wKQczKDuid46Vm6Lo,10475
3
+ agentnet_cli/cli/main.py,sha256=OfDUvYbEs7ofghHyraW6Rb_L61fkbJbcz-T4yNMAeVI,10784
4
4
  agentnet_cli/cli/core/__init__.py,sha256=PjYYAwiVr91CLGMSZsZP1FKEWfsp_R-q28oW7KgLfLc,67
5
5
  agentnet_cli/cli/core/connect.py,sha256=G47ksSHT-VR4C1VHyanhJFmWuoCjBhDJrDt-weTmvWs,2877
6
6
  agentnet_cli/cli/core/detect.py,sha256=K7g5Ymn63y1v7UNa5ecNcK3UH_osm1yDJV6O9R98jaQ,848
7
7
  agentnet_cli/cli/core/disconnect.py,sha256=zTaUC31ZN3do_ZUxTjnU54mKKg9JQTplkawqUCza0AA,2073
8
- agentnet_cli/cli/core/register.py,sha256=NuLyoL7HPBYnade2h03_30URzRivHTeKXi91cWU-UAA,8203
8
+ agentnet_cli/cli/core/register.py,sha256=il-HkWVO8hyZSpbO73p2X6dAfFv61STn0S9kf9PpUuY,8185
9
9
  agentnet_cli/cli/core/setup_wizard.py,sha256=SVSU7syBlztFLqWeyGrh3_gZFF1PhJOnsngWJi_AoS0,12447
10
10
  agentnet_cli/cli/core/status.py,sha256=UDkutR7wY3GaRw4I322BDdo390QyznBFb1wojLQIjOQ,2186
11
11
  agentnet_cli/cli/core/updater.py,sha256=lLezNyS74P2vH9TbIwso8q7-FHKaL5IMyDFyOGvvUyI,9599
12
12
  agentnet_cli/cli/marketplace/__init__.py,sha256=EVlPIW4GLjTAddwvw4Zl3kmjHdYdT3ugkE3i1Tsdgf8,52
13
13
  agentnet_cli/cli/marketplace/agent.py,sha256=bunlpIaFO5SdUV7QFr9b-0sXqjLPOadfDR-GtLbmHQ4,492
14
14
  agentnet_cli/cli/marketplace/discover.py,sha256=aOJ_wpxJLe-17E-J0aUfd2omTWHBN9SdiIvOAZLQCzE,1165
15
- agentnet_cli/cli/marketplace/search.py,sha256=yVA1CAKRjWupZAbC4kSBIU0w8vMZJXDlLuo2fuFqKb0,4245
15
+ agentnet_cli/cli/marketplace/search.py,sha256=s0bndYVNoeP66by0wJ3yXxuMT6Z7q8T_4MWFd5xTUPY,4228
16
16
  agentnet_cli/connectors/README.md,sha256=E65ESc45Yw4NRCzQMgFl_LRGb1NzG9KIQUIWhS45Rv0,2426
17
17
  agentnet_cli/connectors/__init__.py,sha256=QDGYsgzhgs6x2WhCLZ72XqFqW1BchrerNeV24Z9uoyk,57
18
18
  agentnet_cli/connectors/base.py,sha256=PU3Dj7aExBFxeFqUNozmvqRRjottMbhukG63U3__1nE,998
19
- agentnet_cli/connectors/claude.py,sha256=Zsy4jQIXR9pRzE165TciMbkq4rk1FpZohoCIx42dnB4,4436
19
+ agentnet_cli/connectors/claude.py,sha256=BSKbGqQdignj1nSDVaokSoPmKqDGxrFt0fC0P5rnttI,4411
20
20
  agentnet_cli/connectors/codex.py,sha256=-cQqxBvExpqvGjRw50QwBneSwMCav5ZQX8c_nyhTuCM,2991
21
21
  agentnet_cli/connectors/copilot.py,sha256=-J1PhZ_hEToNbRpgC7p8y_YFTcQAw-is50YlFfVOpE8,3501
22
22
  agentnet_cli/connectors/cursor.py,sha256=fIwe5fI1j_0Z05So2oBvGTzUdxV-NevY-11UgvfmOxQ,4672
23
23
  agentnet_cli/connectors/hermes.py,sha256=TQ-eIg0Hti9pIJ5W7vZyhEUepDOgXSPOnakKlqSJLkA,5769
24
- agentnet_cli/connectors/openclaw.py,sha256=qXEVTPMCU7sfHHGfhjKQ_b5IF8JWDNvfjRrV5_knCNw,4247
24
+ agentnet_cli/connectors/openclaw.py,sha256=aMcwgl_4E8HJFDgALezhQa_PiE2s1cwOpmIwU3YLKwA,4222
25
25
  agentnet_cli/connectors/registry.py,sha256=cVGf0sgcq4R0uahTjQvcZEDVortGIVTmS4PAiM4kPvk,905
26
26
  agentnet_cli/connectors/shims.py,sha256=PdOKqCd1HQV0yE56JrAdEIXaixZPstMq-Bp5tgifRRQ,555
27
27
  agentnet_cli/connectors/vscode.py,sha256=sEmg3d6XXT9jZzI5_2ieQHUzFyLED6UrnH7HoVwwX-c,4622
28
28
  agentnet_cli/connectors/templates/README.md,sha256=jtnrJhNEWIHcZyE9QlApjaEjymaOTUMggiz7xhmDu9E,2154
29
- agentnet_cli/connectors/templates/SKILL.hosted.md,sha256=C2g_N5ZJnBnRC-YKfg77o3IVOOCPCBYwz6uUSVSvaxM,4971
29
+ agentnet_cli/connectors/templates/SKILL.hosted.md,sha256=xDsOQEyYLoYxiaIdy8IbBjxc8rUlZmxk-qvRx_dwQPY,4971
30
30
  agentnet_cli/connectors/templates/codex/skill.md,sha256=TVoG7dRIqbfxPu3L6mFWPsQf84WbQzFsIh8QWmb_brk,571
31
31
  agentnet_cli/connectors/templates/copilot/agentnet.agent.md,sha256=Z5q1fO83Yw1_SznvUCKPSUv1vDgRI0faBFtU-TYIYjY,554
32
32
  agentnet_cli/connectors/templates/cursor/agent.md,sha256=a8Kz7DSM7RiLcBuyOkCY25RUzCtf4886i5KOp1hGNw0,398
@@ -39,37 +39,38 @@ agentnet_cli/infra/config.py,sha256=oqZfpnxO2H20I3gaRALB7OAXJ3X5k_86HVuDvEhDZos,
39
39
  agentnet_cli/infra/manifest.py,sha256=1LmwN55EOg2n9f-B-mI9hFKoE5yvItiaZEL3-SIVYUQ,2345
40
40
  agentnet_cli/infra/package_paths.py,sha256=xSlxb9iyD0yL62lOXE5jztMFz4V09q2WWgbASIFyD3Y,561
41
41
  agentnet_cli/infra/paths.py,sha256=kIWUYYzQEgyE4VHUEw1c7x7w6CZQUphE0httR_m7fAY,2283
42
+ agentnet_cli/infra/platform.py,sha256=pC6OrX-rj155yg5tTIkK-_dRrUTneKQW9ZGPble-U5s,2167
42
43
  agentnet_cli/integrations/claude/.claude-plugin/marketplace.json,sha256=xypxmAg79CP_ot33TsHJOXI1OMSQWM7MONzz9zGpR2o,343
43
44
  agentnet_cli/integrations/claude/plugin/.mcp.json,sha256=rmkzDTYonv-fhSkRnu-slSzB_EUlrjms0lExUgtdwjw,107
44
- agentnet_cli/integrations/claude/plugin/.claude-plugin/plugin.json,sha256=-3q03jD5mvuyp-R0UXHqPuKTz635BY3FraVxdV6gLSQ,391
45
+ agentnet_cli/integrations/claude/plugin/.claude-plugin/plugin.json,sha256=vwK0smr7APShQ0DyxGBdzpwq8PtUBkLhOeG9zORYHDs,391
45
46
  agentnet_cli/integrations/claude/plugin/agents/marketplace.md,sha256=W8PpF5a0jh3WHadyOsfH9H9Fa8MFc5v9ZfUKep_FRiY,897
46
47
  agentnet_cli/integrations/claude/plugin/hooks/hooks.json,sha256=CzQLhrdYG1UaSeV_Aqe810SGpjTz5s-gMdIqNifqIgw,590
47
48
  agentnet_cli/integrations/claude/plugin/skills/agentnet/SKILL.md,sha256=98aykncfVwj9rSKjETuAwLxLOTlDbfRER9TUpBNmUMs,1621
48
49
  agentnet_cli/integrations/openclaw/.mcp.json,sha256=65dnEdr2KNCdl9zCZqGbPoC8YYEYUa9b8xPXl0abbHI,131
49
50
  agentnet_cli/integrations/openclaw/index.js,sha256=uZ16h-am3PmkdxnWHqOr8sYCYaDSxbjyfMNTkRpDDgw,412
50
- agentnet_cli/integrations/openclaw/openclaw.plugin.json,sha256=qb2QnhoHJaF2hCJMkDsoJcJwKSpPGYGYDGr_JsiMnds,530
51
- agentnet_cli/integrations/openclaw/package.json,sha256=LiJubetslpQidjXz_pP2G1dXHlwpQxnEgSJ6GkgNfvE,529
51
+ agentnet_cli/integrations/openclaw/openclaw.plugin.json,sha256=KoRZk5Ks8-F9eR9Atjq2NteltxzSx7buXLV76lBDdD4,530
52
+ agentnet_cli/integrations/openclaw/package.json,sha256=XZCHW5wQDKMcxyLhxfZATXZ75qJaVa5P-o7kdOU7VGA,529
52
53
  agentnet_cli/integrations/openclaw/skills/agentnet/SKILL.md,sha256=xcG3hS7OpvB_eKZHUYN7E8VWJI-YRmdoPQsSmTBE1LA,1537
53
54
  agentnet_cli/integrations/shared/discovery-skill.base.md,sha256=-r5ze-OWZ4iM6hKD8_1jTKPWqFudxTfHrmOGkW1TQNg,4045
54
55
  agentnet_cli/marketplace/__init__.py,sha256=zOb0qyOag-6Mz5kKo7bCa5B43wcAW8i76WfURONP6Zk,188
55
- agentnet_cli/marketplace/auth.py,sha256=YGOpoeOo9zo7h9LoVU0pHm12qjdRfGDXHYzWiKgLQ6g,1146
56
+ agentnet_cli/marketplace/auth.py,sha256=OwGWVDM6XlkVV9xClPxImJyAvToRJ-HKCnWOOyf9vno,993
56
57
  agentnet_cli/marketplace/client.py,sha256=eBZw2O2o6Zc8T7roUCtnaz406GlfeTfS6EnmrVoj-T8,6705
57
58
  agentnet_cli/marketplace/catalogs/__init__.py,sha256=mMEv65xkZVJM5ecbJKV6BnaOto6FfQMAcqQkcv2wCXc,50
58
59
  agentnet_cli/marketplace/catalogs/claude_marketplace.py,sha256=H5v0NZS8D5oabxi1fmA9B9JyNKsb7VQtJo86xnnnj3o,3080
59
- agentnet_cli/marketplace/catalogs/clawhub.py,sha256=UqBxLlgm1KHVqcmflBZX9mYMgZuX0eDJa19pijRrrgc,2339
60
+ agentnet_cli/marketplace/catalogs/clawhub.py,sha256=bDObbdimZZ90L1nKo7zhtlxUCjbY5uBJPPcTuwja6DY,2390
60
61
  agentnet_cli/marketplace/skills/__init__.py,sha256=J68vgQub-V_pG-BFCls4iLyp0Wko6tUTyzhCe_TnHlU,59
61
62
  agentnet_cli/marketplace/skills/client.py,sha256=TfisfTIsKe0DEmJINTG2PD9piHAgNbgSWxiLl7iQzBc,1724
62
- agentnet_cli/marketplace/skills/discovery.py,sha256=bz3CUILfihngq0AMuVa6FSctQhe17i7E9G4APuvP7Dk,20719
63
+ agentnet_cli/marketplace/skills/discovery.py,sha256=Hqw4d-bkX-FHmfSD_WjXTJWVPdIlWHm2F8Bj4XcmIiY,20835
63
64
  agentnet_cli/marketplace/skills/skillsmp.py,sha256=Cc6XhedukUAdt9RbeMfheyUbObkXF6cW3JcvVl1OVkY,2476
64
65
  agentnet_cli/tools/__init__.py,sha256=qIdkKKdvT1Q0_2Qs0GRxbZHK-hcEXceA3P-nSsaDn8g,49
65
- agentnet_cli/tools/handlers.py,sha256=4tWlofUPTLAr0XaCsOeVt1EykGJSGIG8cnUfptogHas,5767
66
- agentnet_cli/tools/mcp_server.py,sha256=xKfBNiUd_ZXJjvAwMherE_I_GE3fO_SGAglBotPVUKE,12627
66
+ agentnet_cli/tools/handlers.py,sha256=SLVR8nQEyHkkba2pz4sVd-gbnBRL1CZ3CqXvFXLz_8A,5988
67
+ agentnet_cli/tools/mcp_server.py,sha256=9fvECc3Kjch-SKXwfBHlH5DpaAGOElQDrSryyFjVFjM,12632
67
68
  agentnet_cli/tools/hermes/__init__.py,sha256=kR69xK7r-GMUw-BK3WE-L2QRScNhjIL2NS3j79vEt-E,1243
68
- agentnet_cli/tools/hermes/handlers.py,sha256=yegaKuYI13YKEFQ62ZH46x9n-BtEqJdRkAgBbdju7W4,2087
69
- agentnet_cli/tools/hermes/plugin.yaml,sha256=SsJ5jK99aV64svNWjnmHVgVRJrk1H3ETxQnuxuSz2_k,702
69
+ agentnet_cli/tools/hermes/handlers.py,sha256=tfYtlp36FwMgERkR7Zgtc_MkJ4wVoI0mTfegzvCC0-k,2118
70
+ agentnet_cli/tools/hermes/plugin.yaml,sha256=yu-xInb71_KsNAWNrdJqfaikiIvmUZoyGSPgnbOokFo,702
70
71
  agentnet_cli/tools/hermes/schemas.py,sha256=B2zH0R1hKhNnW0YtPX9TZ6kfARwJUYBgs96M2G9cC5w,6857
71
72
  agentnet_cli/tools/hermes/skills/agentnet/SKILL.md,sha256=w9kQGh1duSdq8Q94rIDt9FcJNSRsWj_HMjZT6TopZ5E,1910
72
- agentnet_cli-0.2.2.dist-info/METADATA,sha256=6MatTozdRgveRgTeHfjummfq2WIsgk-WyMIXZaLtKz4,10324
73
- agentnet_cli-0.2.2.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
74
- agentnet_cli-0.2.2.dist-info/entry_points.txt,sha256=HPuvJ65JbVfCd5wQOeKTivXrKqDU36OU-KF8daI0AhI,116
75
- agentnet_cli-0.2.2.dist-info/RECORD,,
73
+ agentnet_cli-0.2.3.dist-info/METADATA,sha256=7691lMLqtF7CXvCpA8tprMMnun0HURqRGF156l0eEdo,11123
74
+ agentnet_cli-0.2.3.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
75
+ agentnet_cli-0.2.3.dist-info/entry_points.txt,sha256=HPuvJ65JbVfCd5wQOeKTivXrKqDU36OU-KF8daI0AhI,116
76
+ agentnet_cli-0.2.3.dist-info/RECORD,,