intentframe-executor 0.1.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.
- intentframe_executor-0.1.0/.gitignore +120 -0
- intentframe_executor-0.1.0/LICENSE +661 -0
- intentframe_executor-0.1.0/PKG-INFO +37 -0
- intentframe_executor-0.1.0/README.md +14 -0
- intentframe_executor-0.1.0/executor/__init__.py +24 -0
- intentframe_executor-0.1.0/executor/config/__init__.py +106 -0
- intentframe_executor-0.1.0/executor/config/executor.yaml +156 -0
- intentframe_executor-0.1.0/executor/config/schema.py +223 -0
- intentframe_executor-0.1.0/executor/dispatch.py +122 -0
- intentframe_executor-0.1.0/executor/gateway.py +399 -0
- intentframe_executor-0.1.0/executor/main.py +284 -0
- intentframe_executor-0.1.0/executor/plan.md +1301 -0
- intentframe_executor-0.1.0/executor/requirements.txt +27 -0
- intentframe_executor-0.1.0/executor/server.py +175 -0
- intentframe_executor-0.1.0/executor/worker_pool.py +174 -0
- intentframe_executor-0.1.0/pyproject.toml +36 -0
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
*.so
|
|
6
|
+
.Python
|
|
7
|
+
build/
|
|
8
|
+
develop-eggs/
|
|
9
|
+
dist/
|
|
10
|
+
downloads/
|
|
11
|
+
eggs/
|
|
12
|
+
.eggs/
|
|
13
|
+
lib/
|
|
14
|
+
lib64/
|
|
15
|
+
parts/
|
|
16
|
+
sdist/
|
|
17
|
+
var/
|
|
18
|
+
wheels/
|
|
19
|
+
share/python-wheels/
|
|
20
|
+
*.egg-info/
|
|
21
|
+
.installed.cfg
|
|
22
|
+
*.egg
|
|
23
|
+
MANIFEST
|
|
24
|
+
|
|
25
|
+
# Virtual environments
|
|
26
|
+
venv/
|
|
27
|
+
env/
|
|
28
|
+
ENV/
|
|
29
|
+
env.bak/
|
|
30
|
+
venv.bak/
|
|
31
|
+
.venv/
|
|
32
|
+
.venv-runtime/
|
|
33
|
+
|
|
34
|
+
# Kits two-venv harness artifacts
|
|
35
|
+
.intentframe/kits/
|
|
36
|
+
.intentframe/kits-build/
|
|
37
|
+
.intentframe/kits-two-venv/
|
|
38
|
+
.intentframe/runtime-constraints.txt
|
|
39
|
+
|
|
40
|
+
# IDEs
|
|
41
|
+
.vscode/
|
|
42
|
+
.idea/
|
|
43
|
+
*.swp
|
|
44
|
+
*.swo
|
|
45
|
+
*~
|
|
46
|
+
|
|
47
|
+
# Jupyter Notebook
|
|
48
|
+
.ipynb_checkpoints
|
|
49
|
+
|
|
50
|
+
# mypy
|
|
51
|
+
.mypy_cache/
|
|
52
|
+
.dmypy.json
|
|
53
|
+
dmypy.json
|
|
54
|
+
|
|
55
|
+
# Pyre type checker
|
|
56
|
+
.pyre/
|
|
57
|
+
|
|
58
|
+
# pytype static type analyzer
|
|
59
|
+
.pytype/
|
|
60
|
+
|
|
61
|
+
# Cython debug symbols
|
|
62
|
+
cython_debug/
|
|
63
|
+
|
|
64
|
+
# Testing
|
|
65
|
+
.pytest_cache/
|
|
66
|
+
.coverage
|
|
67
|
+
.coverage.*
|
|
68
|
+
htmlcov/
|
|
69
|
+
.tox/
|
|
70
|
+
.nox/
|
|
71
|
+
coverage.xml
|
|
72
|
+
*.cover
|
|
73
|
+
.hypothesis/
|
|
74
|
+
|
|
75
|
+
# Environment variables / local secrets
|
|
76
|
+
.env
|
|
77
|
+
.env.local
|
|
78
|
+
.env.*.local
|
|
79
|
+
.aienv
|
|
80
|
+
|
|
81
|
+
# Logs
|
|
82
|
+
*.log
|
|
83
|
+
logs/
|
|
84
|
+
|
|
85
|
+
# Database
|
|
86
|
+
*.db
|
|
87
|
+
*.sqlite
|
|
88
|
+
*.sqlite3
|
|
89
|
+
|
|
90
|
+
# OS
|
|
91
|
+
.DS_Store
|
|
92
|
+
Thumbs.db
|
|
93
|
+
|
|
94
|
+
# Project specific
|
|
95
|
+
*.bak
|
|
96
|
+
*.tmp
|
|
97
|
+
temp/
|
|
98
|
+
tmp/
|
|
99
|
+
|
|
100
|
+
.external_lib_helpers/
|
|
101
|
+
|
|
102
|
+
# Email sync test credentials (contains real passwords)
|
|
103
|
+
external_data_ingestion/tests/test_config.yaml
|
|
104
|
+
external_data_ingestion/tests/test_e2e_config.yaml
|
|
105
|
+
|
|
106
|
+
# Swift platform server (local release builds; regenerate via intentframe_setup.sh / bundle.sh)
|
|
107
|
+
macos-appkit-server/.build/
|
|
108
|
+
|
|
109
|
+
.cursor_chats/
|
|
110
|
+
.cursor/
|
|
111
|
+
|
|
112
|
+
.ruff_cache/
|
|
113
|
+
|
|
114
|
+
# Attack test sandbox (populated at runtime by test harness)
|
|
115
|
+
demo/demo_data/attack_invoices_sandbox/
|
|
116
|
+
|
|
117
|
+
.claude/
|
|
118
|
+
.claude_chats/
|
|
119
|
+
|
|
120
|
+
.cursorignore
|