interagent-framework 0.1.0__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.
- interagent/__init__.py +23 -0
- interagent/cli.py +982 -0
- interagent/constants.py +49 -0
- interagent/locking.py +147 -0
- interagent/messaging.py +183 -0
- interagent/session.py +129 -0
- interagent/task.py +204 -0
- interagent/templates/__init__.py +35 -0
- interagent/templates/review_request.md +68 -0
- interagent/templates/task_delegation.md +69 -0
- interagent/templates/update_prompt.md +70 -0
- interagent/utils.py +90 -0
- interagent/validator.py +156 -0
- interagent/watchdog.py +140 -0
- interagent_framework-0.1.0.dist-info/METADATA +588 -0
- interagent_framework-0.1.0.dist-info/RECORD +20 -0
- interagent_framework-0.1.0.dist-info/WHEEL +5 -0
- interagent_framework-0.1.0.dist-info/entry_points.txt +4 -0
- interagent_framework-0.1.0.dist-info/licenses/LICENSE +21 -0
- interagent_framework-0.1.0.dist-info/top_level.txt +1 -0
interagent/__init__.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""
|
|
2
|
+
InterAgent - A framework for Claude Code and Kimi Code collaboration.
|
|
3
|
+
|
|
4
|
+
This package provides tools for managing inter-agent collaboration through
|
|
5
|
+
structured protocols, task delegation, and shared state.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__version__ = "0.1.0"
|
|
9
|
+
__author__ = "InterAgent Team"
|
|
10
|
+
|
|
11
|
+
from .cli import main
|
|
12
|
+
from .session import Session
|
|
13
|
+
from .task import Task, TaskStatus
|
|
14
|
+
from .messaging import Message, MessageBus
|
|
15
|
+
|
|
16
|
+
__all__ = [
|
|
17
|
+
"main",
|
|
18
|
+
"Session",
|
|
19
|
+
"Task",
|
|
20
|
+
"TaskStatus",
|
|
21
|
+
"Message",
|
|
22
|
+
"MessageBus",
|
|
23
|
+
]
|