ai-intervention-agent 1.3.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.
@@ -0,0 +1,228 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ *.manifest
31
+ *.spec
32
+
33
+ # Installer logs
34
+ pip-log.txt
35
+ pip-delete-this-directory.txt
36
+
37
+ # Unit test / coverage reports
38
+ htmlcov/
39
+ .tox/
40
+ .nox/
41
+ .coverage
42
+ .coverage.*
43
+ .coverage_data/
44
+ .cache
45
+ nosetests.xml
46
+ coverage.xml
47
+ *.cover
48
+ *.py,cover
49
+ .hypothesis/
50
+ .pytest_cache/
51
+ cover/
52
+ junit.xml
53
+ test-results/
54
+
55
+ # Translations
56
+ *.mo
57
+ *.pot
58
+
59
+ # Django stuff:
60
+ *.log
61
+ local_settings.py
62
+ db.sqlite3
63
+ db.sqlite3-journal
64
+
65
+ # Flask stuff:
66
+ instance/
67
+ .webassets-cache
68
+
69
+ # Scrapy stuff:
70
+ .scrapy
71
+
72
+ # Sphinx documentation
73
+ docs/_build/
74
+
75
+ # PyBuilder
76
+ .pybuilder/
77
+ target/
78
+
79
+ # Jupyter Notebook
80
+ .ipynb_checkpoints
81
+
82
+ # IPython
83
+ profile_default/
84
+ ipython_config.py
85
+
86
+ # pyenv
87
+ # .python-version
88
+
89
+ # pipenv
90
+ # Pipfile.lock
91
+
92
+ # poetry
93
+ # poetry.lock
94
+
95
+ # pdm
96
+ # pdm.lock
97
+ .pdm.toml
98
+
99
+ # PEP 582
100
+ __pypackages__/
101
+
102
+ # Celery stuff
103
+ celerybeat-schedule
104
+ celerybeat.pid
105
+
106
+ # SageMath parsed files
107
+ *.sage.py
108
+
109
+ # Environments
110
+ .env
111
+ .env.local
112
+ .env.development.local
113
+ .env.test.local
114
+ .env.production.local
115
+ .envrc
116
+ .venv
117
+ .venv*/
118
+ venv/
119
+ venv*/
120
+ ENV/
121
+ env.bak/
122
+ venv.bak/
123
+
124
+ # Spyder project settings
125
+ .spyderproject
126
+ .spyproject
127
+
128
+ # Rope project settings
129
+ .ropeproject
130
+
131
+ # mkdocs documentation
132
+ /site
133
+
134
+ # mypy
135
+ .mypy_cache/
136
+ .dmypy.json
137
+ dmypy.json
138
+
139
+ # Pyre type checker
140
+ .pyre/
141
+
142
+ # pytype static type analyzer
143
+ .pytype/
144
+
145
+ # Cython debug symbols
146
+ cython_debug/
147
+
148
+ # IDEs
149
+ .idea/
150
+ .vscode/
151
+ *.code-workspace
152
+ *.sublime-project
153
+ *.sublime-workspace
154
+
155
+ # Vim
156
+ *.swp
157
+ *.swo
158
+ *~
159
+
160
+ # Emacs
161
+ *~
162
+ \#*\#
163
+ /.emacs.desktop
164
+ /.emacs.desktop.lock
165
+ *.elc
166
+ auto-save-list
167
+ tramp
168
+ .\#*
169
+
170
+ # OS generated files
171
+ .DS_Store
172
+ .DS_Store?
173
+ ._*
174
+ .Spotlight-V100
175
+ .Trashes
176
+ ehthumbs.db
177
+ Thumbs.db
178
+
179
+ # Temporary files
180
+ *.tmp
181
+ *.temp
182
+ *.bak
183
+ *.backup
184
+
185
+ # Logs
186
+ *.log
187
+ logs/
188
+
189
+ # Runtime data
190
+ pids
191
+ *.pid
192
+ *.seed
193
+ *.pid.lock
194
+
195
+ # uv specific files and directories
196
+ # uv.lock - uncomment if you want to ignore lock file (not recommended for most projects)
197
+ # uv.lock
198
+
199
+ # uv cache directory (if using custom cache location in project)
200
+ .uv-cache/
201
+ .uv/
202
+
203
+ # uv tool installations (global tools cache)
204
+ # Usually in system cache, but might be project-specific
205
+ .uv-tools/
206
+
207
+ # uv virtual environments (if created in project directory)
208
+ .venv-uv/
209
+
210
+ # uv temporary files
211
+ .uv-tmp/
212
+
213
+ # Node.js / frontend
214
+ node_modules/
215
+ npm-debug.log*
216
+ yarn-debug.log*
217
+ yarn-error.log*
218
+ pnpm-debug.log*
219
+
220
+ # Project specific (AI tools / editors)
221
+ .cursor/
222
+ .cursor/rules/
223
+ .cursorignore
224
+ .claude
225
+ CLAUDE.md
226
+
227
+ # Configuration files (local / secret)
228
+ config.jsonc
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Fábio Ferreira
4
+ Copyright (c) 2025 Pau Oliva
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in all
14
+ copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ SOFTWARE.