meshcode 2.2.0__tar.gz → 2.2.1__tar.gz

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 (30) hide show
  1. {meshcode-2.2.0 → meshcode-2.2.1}/PKG-INFO +1 -1
  2. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode/__init__.py +1 -1
  3. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode/meshcode_mcp/server.py +11 -5
  4. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode.egg-info/PKG-INFO +1 -1
  5. {meshcode-2.2.0 → meshcode-2.2.1}/pyproject.toml +1 -1
  6. {meshcode-2.2.0 → meshcode-2.2.1}/README.md +0 -0
  7. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode/cli.py +0 -0
  8. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode/comms_v4.py +0 -0
  9. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode/invites.py +0 -0
  10. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode/launcher.py +0 -0
  11. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode/launcher_install.py +0 -0
  12. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode/meshcode_mcp/__init__.py +0 -0
  13. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode/meshcode_mcp/__main__.py +0 -0
  14. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode/meshcode_mcp/backend.py +0 -0
  15. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode/meshcode_mcp/realtime.py +0 -0
  16. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode/meshcode_mcp/test_backend.py +0 -0
  17. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode/meshcode_mcp/test_realtime.py +0 -0
  18. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode/meshcode_mcp/test_server_wrapper.py +0 -0
  19. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode/preferences.py +0 -0
  20. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode/protocol_v2.py +0 -0
  21. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode/run_agent.py +0 -0
  22. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode/secrets.py +0 -0
  23. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode/self_update.py +0 -0
  24. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode/setup_clients.py +0 -0
  25. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode.egg-info/SOURCES.txt +0 -0
  26. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode.egg-info/dependency_links.txt +0 -0
  27. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode.egg-info/entry_points.txt +0 -0
  28. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode.egg-info/requires.txt +0 -0
  29. {meshcode-2.2.0 → meshcode-2.2.1}/meshcode.egg-info/top_level.txt +0 -0
  30. {meshcode-2.2.0 → meshcode-2.2.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshcode
3
- Version: 2.2.0
3
+ Version: 2.2.1
4
4
  Summary: Real-time communication between AI agents — Supabase-backed CLI
5
5
  Author-email: MeshCode <hello@meshcode.io>
6
6
  License: MIT
@@ -1,2 +1,2 @@
1
1
  """MeshCode — Real-time communication between AI agents."""
2
- __version__ = "2.2.0"
2
+ __version__ = "2.2.1"
@@ -589,12 +589,18 @@ RULES:
589
589
  - Threading: pass in_reply_to.
590
590
  - sensitive=True for secrets/PII.
591
591
 
592
- SESSION START:
593
- 1. meshcode_set_status(status="online", task="ready") — announce you're online
594
- 2. meshcode_check() — read any messages waiting in your inbox
592
+ SESSION START (do these IMMEDIATELY — don't wait for user input):
593
+ 1. meshcode_set_status(status="online", task="ready")
594
+ 2. meshcode_check() — read pending messages
595
595
  3. meshcode_status() — see who's online
596
- 4. Act on user task or meshcode_wait()
597
- (Memories are pre-loaded below no need to call meshcode_recall on boot.)
596
+ 4. If other agents are online → meshcode_send them a greeting
597
+ 5. meshcode_wait()enter the loop
598
+
599
+ CRITICAL: You communicate by CALLING TOOLS, not by thinking or writing text.
600
+ To talk to another agent → call meshcode_send(to="agent", message="...")
601
+ To check who's online → call meshcode_status()
602
+ To wait for messages → call meshcode_wait()
603
+ NEVER just describe what you would do. DO IT by calling the tool.
598
604
 
599
605
  CROSS-MESH: meshcode_send(to="agent@meshwork") routes via active link.
600
606
  meshcode_link(target) creates pending link, target accepts. Expand with
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshcode
3
- Version: 2.2.0
3
+ Version: 2.2.1
4
4
  Summary: Real-time communication between AI agents — Supabase-backed CLI
5
5
  Author-email: MeshCode <hello@meshcode.io>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "meshcode"
7
- version = "2.2.0"
7
+ version = "2.2.1"
8
8
  description = "Real-time communication between AI agents — Supabase-backed CLI"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes