meshcode 2.10.21__tar.gz → 2.10.22__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 (32) hide show
  1. {meshcode-2.10.21 → meshcode-2.10.22}/PKG-INFO +1 -1
  2. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/__init__.py +1 -1
  3. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/meshcode_mcp/server.py +7 -0
  4. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode.egg-info/PKG-INFO +1 -1
  5. {meshcode-2.10.21 → meshcode-2.10.22}/pyproject.toml +1 -1
  6. {meshcode-2.10.21 → meshcode-2.10.22}/README.md +0 -0
  7. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/ascii_art.py +0 -0
  8. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/cli.py +0 -0
  9. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/comms_v4.py +0 -0
  10. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/invites.py +0 -0
  11. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/launcher.py +0 -0
  12. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/launcher_install.py +0 -0
  13. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/meshcode_mcp/__init__.py +0 -0
  14. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/meshcode_mcp/__main__.py +0 -0
  15. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/meshcode_mcp/backend.py +0 -0
  16. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/meshcode_mcp/realtime.py +0 -0
  17. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/meshcode_mcp/test_backend.py +0 -0
  18. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/meshcode_mcp/test_realtime.py +0 -0
  19. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/meshcode_mcp/test_server_wrapper.py +0 -0
  20. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/preferences.py +0 -0
  21. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/protocol_v2.py +0 -0
  22. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/run_agent.py +0 -0
  23. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/secrets.py +0 -0
  24. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/self_update.py +0 -0
  25. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode/setup_clients.py +0 -0
  26. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode.egg-info/SOURCES.txt +0 -0
  27. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode.egg-info/dependency_links.txt +0 -0
  28. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode.egg-info/entry_points.txt +0 -0
  29. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode.egg-info/requires.txt +0 -0
  30. {meshcode-2.10.21 → meshcode-2.10.22}/meshcode.egg-info/top_level.txt +0 -0
  31. {meshcode-2.10.21 → meshcode-2.10.22}/setup.cfg +0 -0
  32. {meshcode-2.10.21 → meshcode-2.10.22}/tests/test_status_enum_coverage.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshcode
3
- Version: 2.10.21
3
+ Version: 2.10.22
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.10.21"
2
+ __version__ = "2.10.22"
@@ -866,6 +866,12 @@ RULES:
866
866
  - sensitive=True for secrets/PII.
867
867
 
868
868
  SESSION START (do these IMMEDIATELY — don't wait for user input):
869
+ The moment you see these instructions — whether the user said "boot", "hi",
870
+ nothing at all, or anything else — run the full protocol. Never reply with
871
+ only a memory summary and then idle. If your client defers MCP tool schemas
872
+ (shows tool names without parameters), your FIRST action is to load them:
873
+ ToolSearch(query="select:meshcode_set_status,meshcode_check,meshcode_tasks,meshcode_auto_wake,meshcode_status,meshcode_wait,meshcode_send,meshcode_task_claim,meshcode_task_complete,meshcode_remember,meshcode_recall")
874
+ Then execute:
869
875
  1. meshcode_set_status(status="online", task="ready")
870
876
  2. meshcode_check() — read NEW messages only (last_seen is auto-restored from mesh memory on boot, old messages are skipped automatically)
871
877
  3. meshcode_tasks() — check for assigned/pending tasks and claim any unclaimed ones
@@ -873,6 +879,7 @@ SESSION START (do these IMMEDIATELY — don't wait for user input):
873
879
  5. meshcode_status() — see who's online
874
880
  6. If other agents are online → meshcode_send them a greeting
875
881
  7. meshcode_wait() — enter the loop
882
+ DO NOT ASK THE USER "what do you want to work on" — the mesh tells you via tasks/messages.
876
883
 
877
884
  CRITICAL: You communicate by CALLING TOOLS, not by thinking or writing text.
878
885
  To talk to another agent → call meshcode_send(to="agent", message="...")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshcode
3
- Version: 2.10.21
3
+ Version: 2.10.22
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.10.21"
7
+ version = "2.10.22"
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