coact 0.0.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.
- coact-0.0.2/.gitattributes +1 -0
- coact-0.0.2/.github/workflows/ci.yml +48 -0
- coact-0.0.2/.gitignore +120 -0
- coact-0.0.2/LICENSE +21 -0
- coact-0.0.2/PKG-INFO +23 -0
- coact-0.0.2/README.md +3 -0
- coact-0.0.2/coact/__init__.py +0 -0
- coact-0.0.2/pyproject.toml +157 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
*.ipynb linguist-documentation
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# wads CI — calls the reusable workflow hosted in i2mint/wads.
|
|
2
|
+
#
|
|
3
|
+
# All configuration comes from this repo's pyproject.toml [tool.wads.ci.*].
|
|
4
|
+
# To customize the workflow itself (rare), replace this file with the
|
|
5
|
+
# full inline template `wads/data/github_ci_uv.yml` from i2mint/wads.
|
|
6
|
+
#
|
|
7
|
+
# Pinning: `@master` floats with wads. If you need version stability for
|
|
8
|
+
# a release-sensitive repo, change `@master` to a wads tag (e.g. `@v0.1.81`).
|
|
9
|
+
# CI failure does not block a published release — it blocks the publish
|
|
10
|
+
# step itself — so floating master is generally safe.
|
|
11
|
+
#
|
|
12
|
+
# Permissions: GitHub validates that the caller grants AT LEAST the
|
|
13
|
+
# permissions any job in the called workflow requests — at workflow-parse
|
|
14
|
+
# time, not at run-time, even if the job would be skipped via `if:`.
|
|
15
|
+
# The reusable workflow needs:
|
|
16
|
+
# contents: write for the publish job's version-bump push-back
|
|
17
|
+
# and for the github-pages job's gh-pages branch push
|
|
18
|
+
# pages: write for the github-pages job's REST API Pages config
|
|
19
|
+
# Both default to `write` on org-account GITHUB_TOKEN and need to be
|
|
20
|
+
# granted explicitly on personal-account callers (where the default is
|
|
21
|
+
# read-only). No `id-token: write` needed — the publish-github-pages
|
|
22
|
+
# action uses peaceiris/actions-gh-pages (branch-based) + REST API,
|
|
23
|
+
# not the OIDC `actions/deploy-pages` flow.
|
|
24
|
+
name: Continuous Integration
|
|
25
|
+
on: [push, pull_request]
|
|
26
|
+
jobs:
|
|
27
|
+
ci:
|
|
28
|
+
uses: i2mint/wads/.github/workflows/uv-ci.yml@master
|
|
29
|
+
permissions:
|
|
30
|
+
contents: write
|
|
31
|
+
pages: write
|
|
32
|
+
# Explicit pass-through (not `secrets: inherit`) because `inherit` does
|
|
33
|
+
# not reliably propagate caller-repo secrets to a reusable workflow owned
|
|
34
|
+
# by a different account (verified empirically: personal-account caller +
|
|
35
|
+
# i2mint-org workflow → `${{ secrets.PYPI_PASSWORD }}` resolved to empty).
|
|
36
|
+
#
|
|
37
|
+
# This list is the per-repo *transport*: it should contain PYPI_PASSWORD
|
|
38
|
+
# (for publishing) plus every secret your tests/CI need. It is generated
|
|
39
|
+
# from [tool.wads.ci.env] in pyproject.toml. To add one, run
|
|
40
|
+
# wads-secrets add VAR_NAME # updates pyproject + this block
|
|
41
|
+
# or just append a line below. *Which* of these become job env vars (and
|
|
42
|
+
# which are required) is controlled by [tool.wads.ci.env] — passing a
|
|
43
|
+
# secret here does not by itself put it in the environment.
|
|
44
|
+
#
|
|
45
|
+
# A secret name must also be declared in the reusable workflow's superset
|
|
46
|
+
# (wads/ci_secrets.py). `wads-secrets add` warns if it is not.
|
|
47
|
+
secrets:
|
|
48
|
+
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
|
coact-0.0.2/.gitignore
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
.claude/handoffs/
|
|
2
|
+
.claude/scratch/
|
|
3
|
+
|
|
4
|
+
# Byte-compiled / optimized / DLL files
|
|
5
|
+
__pycache__/
|
|
6
|
+
*.py[cod]
|
|
7
|
+
*$py.class
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
.DS_Store
|
|
11
|
+
# C extensions
|
|
12
|
+
*.so
|
|
13
|
+
|
|
14
|
+
# TLS certificates
|
|
15
|
+
## Ignore all PEM files anywhere
|
|
16
|
+
*.pem
|
|
17
|
+
## Also ignore any certs directory
|
|
18
|
+
certs/
|
|
19
|
+
|
|
20
|
+
# Distribution / packaging
|
|
21
|
+
.Python
|
|
22
|
+
build/
|
|
23
|
+
develop-eggs/
|
|
24
|
+
dist/
|
|
25
|
+
downloads/
|
|
26
|
+
eggs/
|
|
27
|
+
.eggs/
|
|
28
|
+
lib/
|
|
29
|
+
lib64/
|
|
30
|
+
parts/
|
|
31
|
+
sdist/
|
|
32
|
+
var/
|
|
33
|
+
wheels/
|
|
34
|
+
*.egg-info/
|
|
35
|
+
.installed.cfg
|
|
36
|
+
*.egg
|
|
37
|
+
MANIFEST
|
|
38
|
+
_build
|
|
39
|
+
|
|
40
|
+
# PyInstaller
|
|
41
|
+
# Usually these files are written by a python script from a template
|
|
42
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
43
|
+
*.manifest
|
|
44
|
+
*.spec
|
|
45
|
+
|
|
46
|
+
# Installer logs
|
|
47
|
+
pip-log.txt
|
|
48
|
+
pip-delete-this-directory.txt
|
|
49
|
+
|
|
50
|
+
# Unit test / coverage reports
|
|
51
|
+
htmlcov/
|
|
52
|
+
.tox/
|
|
53
|
+
.coverage
|
|
54
|
+
.coverage.*
|
|
55
|
+
.cache
|
|
56
|
+
nosetests.xml
|
|
57
|
+
coverage.xml
|
|
58
|
+
*.cover
|
|
59
|
+
.hypothesis/
|
|
60
|
+
.pytest_cache/
|
|
61
|
+
|
|
62
|
+
# Translations
|
|
63
|
+
*.mo
|
|
64
|
+
*.pot
|
|
65
|
+
|
|
66
|
+
# Django stuff:
|
|
67
|
+
*.log
|
|
68
|
+
local_settings.py
|
|
69
|
+
db.sqlite3
|
|
70
|
+
|
|
71
|
+
# Flask stuff:
|
|
72
|
+
instance/
|
|
73
|
+
.webassets-cache
|
|
74
|
+
|
|
75
|
+
# Scrapy stuff:
|
|
76
|
+
.scrapy
|
|
77
|
+
|
|
78
|
+
# Sphinx documentation
|
|
79
|
+
docs/_build/
|
|
80
|
+
docs/*
|
|
81
|
+
|
|
82
|
+
# PyBuilder
|
|
83
|
+
target/
|
|
84
|
+
|
|
85
|
+
# Jupyter Notebook
|
|
86
|
+
.ipynb_checkpoints
|
|
87
|
+
|
|
88
|
+
# pyenv
|
|
89
|
+
.python-version
|
|
90
|
+
|
|
91
|
+
# celery beat schedule file
|
|
92
|
+
celerybeat-schedule
|
|
93
|
+
|
|
94
|
+
# SageMath parsed files
|
|
95
|
+
*.sage.py
|
|
96
|
+
|
|
97
|
+
# Environments
|
|
98
|
+
.env
|
|
99
|
+
.venv
|
|
100
|
+
env/
|
|
101
|
+
venv/
|
|
102
|
+
ENV/
|
|
103
|
+
env.bak/
|
|
104
|
+
venv.bak/
|
|
105
|
+
|
|
106
|
+
# Spyder project settings
|
|
107
|
+
.spyderproject
|
|
108
|
+
.spyproject
|
|
109
|
+
|
|
110
|
+
# Rope project settings
|
|
111
|
+
.ropeproject
|
|
112
|
+
|
|
113
|
+
# mkdocs documentation
|
|
114
|
+
/site
|
|
115
|
+
|
|
116
|
+
# mypy
|
|
117
|
+
.mypy_cache/
|
|
118
|
+
|
|
119
|
+
# PyCharm
|
|
120
|
+
.idea
|
coact-0.0.2/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Thor Whalen
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
coact-0.0.2/PKG-INFO
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: coact
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: Tools for building AI agents
|
|
5
|
+
Project-URL: Homepage, https://github.com/thorwhalen/coact
|
|
6
|
+
Project-URL: Repository, https://github.com/thorwhalen/coact
|
|
7
|
+
Project-URL: Documentation, https://thorwhalen.github.io/coact
|
|
8
|
+
Author: Thor Whalen
|
|
9
|
+
License: mit
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Provides-Extra: dev
|
|
13
|
+
Requires-Dist: pytest-cov>=4.0; extra == 'dev'
|
|
14
|
+
Requires-Dist: pytest>=7.0; extra == 'dev'
|
|
15
|
+
Requires-Dist: ruff>=0.1.0; extra == 'dev'
|
|
16
|
+
Provides-Extra: docs
|
|
17
|
+
Requires-Dist: sphinx-rtd-theme>=1.0; extra == 'docs'
|
|
18
|
+
Requires-Dist: sphinx>=6.0; extra == 'docs'
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
|
|
21
|
+
# coact
|
|
22
|
+
|
|
23
|
+
Human in the loop agentic systems.
|
coact-0.0.2/README.md
ADDED
|
File without changes
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = [
|
|
3
|
+
"hatchling",
|
|
4
|
+
]
|
|
5
|
+
build-backend = "hatchling.build"
|
|
6
|
+
|
|
7
|
+
[project]
|
|
8
|
+
name = "coact"
|
|
9
|
+
version = "0.0.2"
|
|
10
|
+
description = "Tools for building AI agents"
|
|
11
|
+
readme = "README.md"
|
|
12
|
+
requires-python = ">=3.10"
|
|
13
|
+
keywords = []
|
|
14
|
+
authors = [
|
|
15
|
+
{ name = "Thor Whalen" },
|
|
16
|
+
]
|
|
17
|
+
dependencies = []
|
|
18
|
+
|
|
19
|
+
[project.license]
|
|
20
|
+
text = "mit"
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://github.com/thorwhalen/coact"
|
|
24
|
+
Repository = "https://github.com/thorwhalen/coact"
|
|
25
|
+
Documentation = "https://thorwhalen.github.io/coact"
|
|
26
|
+
|
|
27
|
+
[project.optional-dependencies]
|
|
28
|
+
dev = [
|
|
29
|
+
"pytest>=7.0",
|
|
30
|
+
"pytest-cov>=4.0",
|
|
31
|
+
"ruff>=0.1.0",
|
|
32
|
+
]
|
|
33
|
+
docs = [
|
|
34
|
+
"sphinx>=6.0",
|
|
35
|
+
"sphinx-rtd-theme>=1.0",
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
[tool.ruff]
|
|
39
|
+
line-length = 88
|
|
40
|
+
target-version = "py310"
|
|
41
|
+
exclude = [
|
|
42
|
+
"**/*.ipynb",
|
|
43
|
+
".git",
|
|
44
|
+
".venv",
|
|
45
|
+
"build",
|
|
46
|
+
"dist",
|
|
47
|
+
"tests",
|
|
48
|
+
"examples",
|
|
49
|
+
"scrap",
|
|
50
|
+
]
|
|
51
|
+
|
|
52
|
+
[tool.ruff.lint]
|
|
53
|
+
select = [
|
|
54
|
+
"D100",
|
|
55
|
+
]
|
|
56
|
+
ignore = [
|
|
57
|
+
"D203",
|
|
58
|
+
"E501",
|
|
59
|
+
"B905",
|
|
60
|
+
]
|
|
61
|
+
|
|
62
|
+
[tool.ruff.lint.pydocstyle]
|
|
63
|
+
convention = "google"
|
|
64
|
+
|
|
65
|
+
[tool.ruff.lint.per-file-ignores]
|
|
66
|
+
"**/tests/*" = [
|
|
67
|
+
"D",
|
|
68
|
+
]
|
|
69
|
+
"**/examples/*" = [
|
|
70
|
+
"D",
|
|
71
|
+
]
|
|
72
|
+
"**/scrap/*" = [
|
|
73
|
+
"D",
|
|
74
|
+
]
|
|
75
|
+
|
|
76
|
+
[tool.pytest.ini_options]
|
|
77
|
+
minversion = "6.0"
|
|
78
|
+
testpaths = [
|
|
79
|
+
"tests",
|
|
80
|
+
]
|
|
81
|
+
doctest_optionflags = [
|
|
82
|
+
"NORMALIZE_WHITESPACE",
|
|
83
|
+
"ELLIPSIS",
|
|
84
|
+
]
|
|
85
|
+
|
|
86
|
+
[tool.wads.ci]
|
|
87
|
+
project_name = ""
|
|
88
|
+
|
|
89
|
+
[tool.wads.ci.commands]
|
|
90
|
+
pre_test = []
|
|
91
|
+
test = []
|
|
92
|
+
post_test = []
|
|
93
|
+
lint = []
|
|
94
|
+
format = []
|
|
95
|
+
|
|
96
|
+
[tool.wads.ci.env]
|
|
97
|
+
required_envvars = []
|
|
98
|
+
test_envvars = []
|
|
99
|
+
extra_envvars = []
|
|
100
|
+
|
|
101
|
+
[tool.wads.ci.env.defaults]
|
|
102
|
+
|
|
103
|
+
[tool.wads.ci.quality.ruff]
|
|
104
|
+
enabled = true
|
|
105
|
+
|
|
106
|
+
[tool.wads.ci.quality.black]
|
|
107
|
+
enabled = false
|
|
108
|
+
|
|
109
|
+
[tool.wads.ci.quality.mypy]
|
|
110
|
+
enabled = false
|
|
111
|
+
|
|
112
|
+
[tool.wads.ci.testing]
|
|
113
|
+
enabled = true
|
|
114
|
+
python_versions = [
|
|
115
|
+
"3.10",
|
|
116
|
+
"3.12",
|
|
117
|
+
]
|
|
118
|
+
pytest_args = [
|
|
119
|
+
"-v",
|
|
120
|
+
"--tb=short",
|
|
121
|
+
]
|
|
122
|
+
coverage_enabled = true
|
|
123
|
+
coverage_threshold = 0
|
|
124
|
+
coverage_report_format = [
|
|
125
|
+
"term",
|
|
126
|
+
"xml",
|
|
127
|
+
]
|
|
128
|
+
exclude_paths = [
|
|
129
|
+
"examples",
|
|
130
|
+
"scrap",
|
|
131
|
+
]
|
|
132
|
+
test_on_windows = true
|
|
133
|
+
|
|
134
|
+
[tool.wads.ci.metrics]
|
|
135
|
+
enabled = true
|
|
136
|
+
config_path = ".github/umpyre-config.yml"
|
|
137
|
+
storage_branch = "code-metrics"
|
|
138
|
+
python_version = "3.10"
|
|
139
|
+
force_run = false
|
|
140
|
+
|
|
141
|
+
[tool.wads.ci.build]
|
|
142
|
+
sdist = true
|
|
143
|
+
wheel = true
|
|
144
|
+
|
|
145
|
+
[tool.wads.ci.publish]
|
|
146
|
+
enabled = true
|
|
147
|
+
skip_ci_marker = "[skip ci]"
|
|
148
|
+
publish_marker = "[publish]"
|
|
149
|
+
|
|
150
|
+
[tool.wads.ci.docs]
|
|
151
|
+
enabled = true
|
|
152
|
+
builder = "epythet"
|
|
153
|
+
ignore_paths = [
|
|
154
|
+
"tests/",
|
|
155
|
+
"scrap/",
|
|
156
|
+
"examples/",
|
|
157
|
+
]
|