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.
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/PKG-INFO +1 -1
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/pyproject.toml +1 -1
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper.egg-info/PKG-INFO +1 -1
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/LICENSE +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/README.md +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/setup.cfg +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_adapters.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_brief_sections.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_candidate_reviewer.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_core_memory.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_curator.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_delegated_search.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_dialectic.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_dialectic_tier.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_error_paths.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_extract_daemon.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_i18n_multilang.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_identity.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_lessons.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_missed_spawns.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_nudges.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_process_health.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_shadow_review.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_skill_hint.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_skill_tier.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_skill_use_parser.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_skill_watcher.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_skills.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_spawn_budget.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_spawn_config.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_spawn_hint.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_spawn_slim.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_threads.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_tools_smoke.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_validate_threads.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/tests/test_vec_search.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/__init__.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/_mcp.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/_setup.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/adapters/__init__.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/adapters/_hook_helpers.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/adapters/base.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/adapters/claude_code.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/adapters/claude_desktop.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/adapters/codex.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/adapters/copilot.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/adapters/gemini.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/adapters/vscode.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/brief.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/candidate_reviewer.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/config.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/curator.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/db.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/embeddings.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/extract_daemon.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/helpers.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/i18n.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/identity.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/ingest.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/lessons.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/nudges.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/process_health.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/review_prompts.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/search_proxy.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/server.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/shadow_review.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/skill_watcher.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/spawn_budget.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/spawn_config.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/__init__.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/candidate_reviewer.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/concepts.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/consolidate.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/core_memory.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/correlation.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/curator.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/dialectic.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/dialog.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/distill.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/extract.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/graph.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/invariants.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/lessons.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/missed_spawns.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/peers.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/pickup.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/probes.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/process_health.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/session.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/shadow_review.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/skills.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/spawn.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/style.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/threads.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper/tools/validate.py +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper.egg-info/SOURCES.txt +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper.egg-info/dependency_links.txt +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper.egg-info/entry_points.txt +0 -0
- {threadkeeper-0.5.0 → threadkeeper-0.5.2}/threadkeeper.egg-info/requires.txt +0 -0
- {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.
|
|
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.
|
|
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.
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|