threadkeeper 0.5.0__tar.gz → 0.5.2__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 (100) hide show
  1. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/PKG-INFO +1 -1
  2. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/pyproject.toml +1 -1
  3. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper.egg-info/PKG-INFO +1 -1
  4. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/LICENSE +0 -0
  5. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/README.md +0 -0
  6. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/setup.cfg +0 -0
  7. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_adapters.py +0 -0
  8. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_brief_sections.py +0 -0
  9. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_candidate_reviewer.py +0 -0
  10. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_core_memory.py +0 -0
  11. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_curator.py +0 -0
  12. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_delegated_search.py +0 -0
  13. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_dialectic.py +0 -0
  14. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_dialectic_tier.py +0 -0
  15. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_error_paths.py +0 -0
  16. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_extract_daemon.py +0 -0
  17. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_i18n_multilang.py +0 -0
  18. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_identity.py +0 -0
  19. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_lessons.py +0 -0
  20. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_missed_spawns.py +0 -0
  21. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_nudges.py +0 -0
  22. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_process_health.py +0 -0
  23. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_shadow_review.py +0 -0
  24. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_skill_hint.py +0 -0
  25. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_skill_tier.py +0 -0
  26. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_skill_use_parser.py +0 -0
  27. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_skill_watcher.py +0 -0
  28. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_skills.py +0 -0
  29. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_spawn_budget.py +0 -0
  30. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_spawn_config.py +0 -0
  31. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_spawn_hint.py +0 -0
  32. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_spawn_slim.py +0 -0
  33. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_threads.py +0 -0
  34. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_tools_smoke.py +0 -0
  35. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_validate_threads.py +0 -0
  36. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_vec_search.py +0 -0
  37. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/__init__.py +0 -0
  38. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/_mcp.py +0 -0
  39. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/_setup.py +0 -0
  40. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/adapters/__init__.py +0 -0
  41. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/adapters/_hook_helpers.py +0 -0
  42. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/adapters/base.py +0 -0
  43. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/adapters/claude_code.py +0 -0
  44. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/adapters/claude_desktop.py +0 -0
  45. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/adapters/codex.py +0 -0
  46. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/adapters/copilot.py +0 -0
  47. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/adapters/gemini.py +0 -0
  48. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/adapters/vscode.py +0 -0
  49. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/brief.py +0 -0
  50. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/candidate_reviewer.py +0 -0
  51. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/config.py +0 -0
  52. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/curator.py +0 -0
  53. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/db.py +0 -0
  54. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/embeddings.py +0 -0
  55. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/extract_daemon.py +0 -0
  56. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/helpers.py +0 -0
  57. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/i18n.py +0 -0
  58. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/identity.py +0 -0
  59. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/ingest.py +0 -0
  60. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/lessons.py +0 -0
  61. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/nudges.py +0 -0
  62. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/process_health.py +0 -0
  63. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/review_prompts.py +0 -0
  64. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/search_proxy.py +0 -0
  65. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/server.py +0 -0
  66. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/shadow_review.py +0 -0
  67. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/skill_watcher.py +0 -0
  68. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/spawn_budget.py +0 -0
  69. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/spawn_config.py +0 -0
  70. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/__init__.py +0 -0
  71. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/candidate_reviewer.py +0 -0
  72. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/concepts.py +0 -0
  73. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/consolidate.py +0 -0
  74. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/core_memory.py +0 -0
  75. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/correlation.py +0 -0
  76. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/curator.py +0 -0
  77. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/dialectic.py +0 -0
  78. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/dialog.py +0 -0
  79. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/distill.py +0 -0
  80. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/extract.py +0 -0
  81. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/graph.py +0 -0
  82. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/invariants.py +0 -0
  83. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/lessons.py +0 -0
  84. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/missed_spawns.py +0 -0
  85. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/peers.py +0 -0
  86. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/pickup.py +0 -0
  87. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/probes.py +0 -0
  88. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/process_health.py +0 -0
  89. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/session.py +0 -0
  90. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/shadow_review.py +0 -0
  91. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/skills.py +0 -0
  92. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/spawn.py +0 -0
  93. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/style.py +0 -0
  94. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/threads.py +0 -0
  95. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/validate.py +0 -0
  96. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper.egg-info/SOURCES.txt +0 -0
  97. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper.egg-info/dependency_links.txt +0 -0
  98. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper.egg-info/entry_points.txt +0 -0
  99. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper.egg-info/requires.txt +0 -0
  100. {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: threadkeeper
3
- Version: 0.5.0
3
+ Version: 0.5.2
4
4
  Summary: Multi-agent shared brain across Claude Code/Desktop, Codex, Gemini, Copilot, VS Code. Cross-session memory, self-improving skill loops, inter-agent signaling — one local MCP server.
5
5
  Author: thread-keeper contributors
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "threadkeeper"
7
- version = "0.5.0"
7
+ version = "0.5.2"
8
8
  description = "Multi-agent shared brain across Claude Code/Desktop, Codex, Gemini, Copilot, VS Code. Cross-session memory, self-improving skill loops, inter-agent signaling — one local MCP server."
9
9
  requires-python = ">=3.11"
10
10
  authors = [{ name = "thread-keeper contributors" }]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: threadkeeper
3
- Version: 0.5.0
3
+ Version: 0.5.2
4
4
  Summary: Multi-agent shared brain across Claude Code/Desktop, Codex, Gemini, Copilot, VS Code. Cross-session memory, self-improving skill loops, inter-agent signaling — one local MCP server.
5
5
  Author: thread-keeper contributors
6
6
  License: MIT
File without changes
File without changes
File without changes