agent86 1.0.0__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.
- agent86-1.0.0/.gitignore +39 -0
- agent86-1.0.0/CHANGELOG.md +1194 -0
- agent86-1.0.0/LICENSE +21 -0
- agent86-1.0.0/PKG-INFO +935 -0
- agent86-1.0.0/README.md +860 -0
- agent86-1.0.0/docs/ARCHITECTURE.md +1164 -0
- agent86-1.0.0/pyproject.toml +165 -0
- agent86-1.0.0/src/agent86/__init__.py +14 -0
- agent86-1.0.0/src/agent86/__main__.py +6 -0
- agent86-1.0.0/src/agent86/agents/__init__.py +17 -0
- agent86-1.0.0/src/agent86/agents/broker.py +45 -0
- agent86-1.0.0/src/agent86/agents/envelope.py +43 -0
- agent86-1.0.0/src/agent86/agents/orchestrator.py +48 -0
- agent86-1.0.0/src/agent86/agents/subagent.py +169 -0
- agent86-1.0.0/src/agent86/cli.py +993 -0
- agent86-1.0.0/src/agent86/cognitive/__init__.py +17 -0
- agent86-1.0.0/src/agent86/cognitive/anthropic_provider.py +360 -0
- agent86-1.0.0/src/agent86/cognitive/base.py +217 -0
- agent86-1.0.0/src/agent86/cognitive/capabilities.py +212 -0
- agent86-1.0.0/src/agent86/cognitive/catalog.py +118 -0
- agent86-1.0.0/src/agent86/cognitive/http_timeouts.py +66 -0
- agent86-1.0.0/src/agent86/cognitive/llamacpp_provider.py +31 -0
- agent86-1.0.0/src/agent86/cognitive/ollama_provider.py +252 -0
- agent86-1.0.0/src/agent86/cognitive/openai_provider.py +399 -0
- agent86-1.0.0/src/agent86/cognitive/pricing.py +314 -0
- agent86-1.0.0/src/agent86/cognitive/prompt.py +75 -0
- agent86-1.0.0/src/agent86/cognitive/retry.py +207 -0
- agent86-1.0.0/src/agent86/config.py +577 -0
- agent86-1.0.0/src/agent86/config_writer.py +238 -0
- agent86-1.0.0/src/agent86/gateway/__init__.py +11 -0
- agent86-1.0.0/src/agent86/guardrails/__init__.py +15 -0
- agent86-1.0.0/src/agent86/guardrails/egress.py +34 -0
- agent86-1.0.0/src/agent86/guardrails/ingress.py +45 -0
- agent86-1.0.0/src/agent86/guardrails/policy.py +154 -0
- agent86-1.0.0/src/agent86/guardrails/scanners.py +123 -0
- agent86-1.0.0/src/agent86/memory/__init__.py +18 -0
- agent86-1.0.0/src/agent86/memory/embeddings.py +156 -0
- agent86-1.0.0/src/agent86/memory/episodic.py +92 -0
- agent86-1.0.0/src/agent86/memory/semantic.py +25 -0
- agent86-1.0.0/src/agent86/memory/store.py +431 -0
- agent86-1.0.0/src/agent86/memory/system.py +46 -0
- agent86-1.0.0/src/agent86/memory/working.py +257 -0
- agent86-1.0.0/src/agent86/observability/__init__.py +10 -0
- agent86-1.0.0/src/agent86/observability/recorder.py +267 -0
- agent86-1.0.0/src/agent86/observability/redact.py +138 -0
- agent86-1.0.0/src/agent86/observability/tracing.py +217 -0
- agent86-1.0.0/src/agent86/orchestration/__init__.py +13 -0
- agent86-1.0.0/src/agent86/orchestration/circuit.py +71 -0
- agent86-1.0.0/src/agent86/orchestration/loop.py +1248 -0
- agent86-1.0.0/src/agent86/orchestration/router.py +84 -0
- agent86-1.0.0/src/agent86/orchestration/state.py +75 -0
- agent86-1.0.0/src/agent86/secrets.py +194 -0
- agent86-1.0.0/src/agent86/skills/__init__.py +11 -0
- agent86-1.0.0/src/agent86/skills/loader.py +313 -0
- agent86-1.0.0/src/agent86/skills/models.py +49 -0
- agent86-1.0.0/src/agent86/tools/__init__.py +14 -0
- agent86-1.0.0/src/agent86/tools/base.py +168 -0
- agent86-1.0.0/src/agent86/tools/builtin/__init__.py +5 -0
- agent86-1.0.0/src/agent86/tools/builtin/delegate.py +39 -0
- agent86-1.0.0/src/agent86/tools/builtin/files.py +344 -0
- agent86-1.0.0/src/agent86/tools/builtin/memory.py +57 -0
- agent86-1.0.0/src/agent86/tools/builtin/python_exec.py +57 -0
- agent86-1.0.0/src/agent86/tools/builtin/shell.py +58 -0
- agent86-1.0.0/src/agent86/tools/builtin/skills_tool.py +59 -0
- agent86-1.0.0/src/agent86/tools/builtin/web.py +316 -0
- agent86-1.0.0/src/agent86/tools/mcp_client.py +463 -0
- agent86-1.0.0/src/agent86/tools/registry.py +180 -0
- agent86-1.0.0/src/agent86/tools/sandbox/__init__.py +7 -0
- agent86-1.0.0/src/agent86/tools/sandbox/docker_exec.py +137 -0
- agent86-1.0.0/src/agent86/tools/sandbox/executor.py +95 -0
- agent86-1.0.0/src/agent86/tools/sandbox/policy.py +203 -0
- agent86-1.0.0/src/agent86/tools/sandbox/subprocess_exec.py +146 -0
- agent86-1.0.0/src/agent86/tui/__init__.py +1 -0
- agent86-1.0.0/src/agent86/tui/app.py +1477 -0
- agent86-1.0.0/src/agent86/tui/commands.py +577 -0
- agent86-1.0.0/src/agent86/tui/mentions.py +270 -0
- agent86-1.0.0/src/agent86/tui/messages.py +136 -0
- agent86-1.0.0/src/agent86/tui/screens/__init__.py +1 -0
- agent86-1.0.0/src/agent86/tui/screens/_shutdown.py +48 -0
- agent86-1.0.0/src/agent86/tui/screens/approval.py +91 -0
- agent86-1.0.0/src/agent86/tui/screens/connection_test.py +167 -0
- agent86-1.0.0/src/agent86/tui/screens/key_entry.py +75 -0
- agent86-1.0.0/src/agent86/tui/screens/mcp_manager.py +473 -0
- agent86-1.0.0/src/agent86/tui/screens/mcp_test.py +186 -0
- agent86-1.0.0/src/agent86/tui/screens/mode_picker.py +41 -0
- agent86-1.0.0/src/agent86/tui/screens/model_picker.py +127 -0
- agent86-1.0.0/src/agent86/tui/screens/provider_manager.py +206 -0
- agent86-1.0.0/src/agent86/tui/screens/save_diff.py +110 -0
- agent86-1.0.0/src/agent86/tui/screens/session_picker.py +135 -0
- agent86-1.0.0/src/agent86/tui/turn_bridge.py +217 -0
- agent86-1.0.0/src/agent86/tui/widgets/__init__.py +1 -0
- agent86-1.0.0/src/agent86/tui/widgets/prompt_input.py +200 -0
- agent86-1.0.0/src/agent86/tui/widgets/status_footer.py +77 -0
- agent86-1.0.0/src/agent86/tui/widgets/tool_block.py +131 -0
- agent86-1.0.0/src/agent86/tui/widgets/transcript.py +208 -0
- agent86-1.0.0/src/agent86/types.py +296 -0
- agent86-1.0.0/src/agent86/ui/__init__.py +6 -0
- agent86-1.0.0/src/agent86/ui/history.py +208 -0
- agent86-1.0.0/src/agent86/ui/repl.py +464 -0
- agent86-1.0.0/src/agent86/ui/status.py +263 -0
agent86-1.0.0/.gitignore
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*.egg-info/
|
|
5
|
+
.eggs/
|
|
6
|
+
build/
|
|
7
|
+
dist/
|
|
8
|
+
*.so
|
|
9
|
+
|
|
10
|
+
# Virtual environments
|
|
11
|
+
.venv/
|
|
12
|
+
venv/
|
|
13
|
+
env/
|
|
14
|
+
|
|
15
|
+
# uv
|
|
16
|
+
uv.lock
|
|
17
|
+
|
|
18
|
+
# Tooling caches
|
|
19
|
+
.pytest_cache/
|
|
20
|
+
.mypy_cache/
|
|
21
|
+
.ruff_cache/
|
|
22
|
+
|
|
23
|
+
# agent86 local state
|
|
24
|
+
.agent86/
|
|
25
|
+
*.db
|
|
26
|
+
*.db-wal
|
|
27
|
+
*.db-shm
|
|
28
|
+
traces/
|
|
29
|
+
*.jsonl
|
|
30
|
+
|
|
31
|
+
# OS / editor
|
|
32
|
+
.DS_Store
|
|
33
|
+
Thumbs.db
|
|
34
|
+
.idea/
|
|
35
|
+
.vscode/
|
|
36
|
+
|
|
37
|
+
# Source book — kept locally, never published
|
|
38
|
+
docs/The_Agentic_Harness_PROOF.pdf
|
|
39
|
+
docs/*.pdf
|