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 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
+ ]