ol-agent-kit 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.
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Dependencies
|
|
2
|
+
node_modules/
|
|
3
|
+
.venv/
|
|
4
|
+
__pycache__/
|
|
5
|
+
*.pyc
|
|
6
|
+
|
|
7
|
+
# Environment / secrets
|
|
8
|
+
.env
|
|
9
|
+
.env.local
|
|
10
|
+
.env.*.local
|
|
11
|
+
*.secret
|
|
12
|
+
|
|
13
|
+
# Editor
|
|
14
|
+
.vscode/settings.json
|
|
15
|
+
.idea/
|
|
16
|
+
*.swp
|
|
17
|
+
*.swo
|
|
18
|
+
|
|
19
|
+
# OS
|
|
20
|
+
.DS_Store
|
|
21
|
+
Thumbs.db
|
|
22
|
+
|
|
23
|
+
# Build artifacts
|
|
24
|
+
dist/
|
|
25
|
+
build/
|
|
26
|
+
*.egg-info/
|
|
27
|
+
# omnigraph binary downloaded by hatch_build.py — not committed
|
|
28
|
+
_bin/
|
|
29
|
+
# omnigraph cluster state (populated by `omnigraph cluster import`)
|
|
30
|
+
__cluster/
|
|
31
|
+
|
|
32
|
+
# MCP server logs / caches
|
|
33
|
+
.mcp-cache/
|
|
34
|
+
mcp-server.log
|
|
35
|
+
.ruff_cache/
|
|
36
|
+
|
|
37
|
+
# agent-config-kit remote skill/hook fetch cache
|
|
38
|
+
.agent-config-kit-cache/
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ol-agent-kit
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Meta-package: installs the full mitodl agent-kit toolkit (agent-config-kit's agent-kit CLI + witan + witan-code)
|
|
5
|
+
Project-URL: Homepage, https://github.com/mitodl/agent-kit
|
|
6
|
+
Project-URL: Repository, https://github.com/mitodl/agent-kit
|
|
7
|
+
Project-URL: Documentation, https://github.com/mitodl/agent-kit/blob/main/packages/agent-kit/README.md
|
|
8
|
+
Project-URL: Issues, https://github.com/mitodl/agent-kit/issues
|
|
9
|
+
License-Expression: BSD-3-Clause
|
|
10
|
+
Keywords: agent,coding-agent,mcp,meta-package
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.11
|
|
13
|
+
Requires-Dist: agent-config-kit[cli]>=0.3.7
|
|
14
|
+
Requires-Dist: witan-code>=0.2.0
|
|
15
|
+
Requires-Dist: witan-council>=0.2.0
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# ol-agent-kit
|
|
19
|
+
|
|
20
|
+
Meta-package that installs the full mitodl agent toolkit in one shot:
|
|
21
|
+
|
|
22
|
+
- [`agent-config-kit[cli]`](../agent-config-kit/README.md) — the `agent-kit` CLI for
|
|
23
|
+
applying `agent-config.toml` manifests across coding-agent platforms
|
|
24
|
+
- [`witan`](../../mcp/servers/witan/README.md) (PyPI: `witan-council`) — the agent
|
|
25
|
+
memory, planning, and task-coordination MCP server
|
|
26
|
+
- [`witan-code`](../../mcp/servers/witan-code/README.md) — the tree-sitter code-graph
|
|
27
|
+
MCP server, mounted under `witan code`
|
|
28
|
+
|
|
29
|
+
It carries no code of its own — it exists purely so `pip install ol-agent-kit` /
|
|
30
|
+
`uv tool install ol-agent-kit` pulls in all three at once. `agent-kit` was
|
|
31
|
+
already taken on PyPI (`agentkit` — PEP 503 normalizes hyphens/underscores/case,
|
|
32
|
+
so they collide), hence the `ol-` prefix on the *distribution* name; the
|
|
33
|
+
console script and command stay `agent-kit`.
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
uv tool install ol-agent-kit
|
|
37
|
+
agent-kit apply agent-config.toml
|
|
38
|
+
witan setup --agent claude
|
|
39
|
+
witan-code --help
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Versioning
|
|
43
|
+
|
|
44
|
+
Version bumps go through [`bump-my-version`](https://github.com/callowayproject/bump-my-version)
|
|
45
|
+
(config in `[tool.bumpversion]`), same as `agent-config-kit`, `witan`, and
|
|
46
|
+
`witan-code`. `dependencies` versions in `pyproject.toml` are open-ended
|
|
47
|
+
floors (`agent-config-kit[cli]>=0.3.7`, `witan-council>=0.2.0`,
|
|
48
|
+
`witan-code>=0.2.0` — no upper bound), so a new release of any of the three
|
|
49
|
+
is picked up by a fresh install automatically without needing a matching
|
|
50
|
+
`ol-agent-kit` release.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# ol-agent-kit
|
|
2
|
+
|
|
3
|
+
Meta-package that installs the full mitodl agent toolkit in one shot:
|
|
4
|
+
|
|
5
|
+
- [`agent-config-kit[cli]`](../agent-config-kit/README.md) — the `agent-kit` CLI for
|
|
6
|
+
applying `agent-config.toml` manifests across coding-agent platforms
|
|
7
|
+
- [`witan`](../../mcp/servers/witan/README.md) (PyPI: `witan-council`) — the agent
|
|
8
|
+
memory, planning, and task-coordination MCP server
|
|
9
|
+
- [`witan-code`](../../mcp/servers/witan-code/README.md) — the tree-sitter code-graph
|
|
10
|
+
MCP server, mounted under `witan code`
|
|
11
|
+
|
|
12
|
+
It carries no code of its own — it exists purely so `pip install ol-agent-kit` /
|
|
13
|
+
`uv tool install ol-agent-kit` pulls in all three at once. `agent-kit` was
|
|
14
|
+
already taken on PyPI (`agentkit` — PEP 503 normalizes hyphens/underscores/case,
|
|
15
|
+
so they collide), hence the `ol-` prefix on the *distribution* name; the
|
|
16
|
+
console script and command stay `agent-kit`.
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
uv tool install ol-agent-kit
|
|
20
|
+
agent-kit apply agent-config.toml
|
|
21
|
+
witan setup --agent claude
|
|
22
|
+
witan-code --help
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Versioning
|
|
26
|
+
|
|
27
|
+
Version bumps go through [`bump-my-version`](https://github.com/callowayproject/bump-my-version)
|
|
28
|
+
(config in `[tool.bumpversion]`), same as `agent-config-kit`, `witan`, and
|
|
29
|
+
`witan-code`. `dependencies` versions in `pyproject.toml` are open-ended
|
|
30
|
+
floors (`agent-config-kit[cli]>=0.3.7`, `witan-council>=0.2.0`,
|
|
31
|
+
`witan-code>=0.2.0` — no upper bound), so a new release of any of the three
|
|
32
|
+
is picked up by a fresh install automatically without needing a matching
|
|
33
|
+
`ol-agent-kit` release.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Meta-package that installs agent-config-kit, witan, and witan-code together."""
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "ol-agent-kit"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Meta-package: installs the full mitodl agent-kit toolkit (agent-config-kit's agent-kit CLI + witan + witan-code)"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "BSD-3-Clause"
|
|
7
|
+
requires-python = ">=3.11"
|
|
8
|
+
keywords = ["mcp", "agent", "coding-agent", "meta-package"]
|
|
9
|
+
classifiers = [
|
|
10
|
+
"Programming Language :: Python :: 3",
|
|
11
|
+
]
|
|
12
|
+
dependencies = [
|
|
13
|
+
"agent-config-kit[cli]>=0.3.7",
|
|
14
|
+
"witan-council>=0.2.0",
|
|
15
|
+
"witan-code>=0.2.0",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
Homepage = "https://github.com/mitodl/agent-kit"
|
|
20
|
+
Repository = "https://github.com/mitodl/agent-kit"
|
|
21
|
+
Documentation = "https://github.com/mitodl/agent-kit/blob/main/packages/agent-kit/README.md"
|
|
22
|
+
Issues = "https://github.com/mitodl/agent-kit/issues"
|
|
23
|
+
|
|
24
|
+
[build-system]
|
|
25
|
+
requires = ["hatchling"]
|
|
26
|
+
build-backend = "hatchling.build"
|
|
27
|
+
|
|
28
|
+
[tool.uv.sources]
|
|
29
|
+
# Until a sibling package's local version bump has actually been published
|
|
30
|
+
# to PyPI, consume it as an editable workspace path dependency so `uv sync`
|
|
31
|
+
# / CI can resolve ahead of publish (same pattern as mcp/servers/witan).
|
|
32
|
+
agent-config-kit = { path = "../agent-config-kit", editable = true }
|
|
33
|
+
witan-council = { path = "../../mcp/servers/witan", editable = true }
|
|
34
|
+
witan-code = { path = "../../mcp/servers/witan-code", editable = true }
|
|
35
|
+
|
|
36
|
+
[tool.hatch.build.targets.wheel]
|
|
37
|
+
packages = ["agent_kit"]
|
|
38
|
+
|
|
39
|
+
[tool.bumpversion]
|
|
40
|
+
current_version = "0.1.0"
|
|
41
|
+
allow_dirty = true
|
|
42
|
+
|
|
43
|
+
[[tool.bumpversion.files]]
|
|
44
|
+
filename = "pyproject.toml"
|
|
45
|
+
search = 'version = "{current_version}"'
|
|
46
|
+
replace = 'version = "{new_version}"'
|
|
47
|
+
|
|
48
|
+
[dependency-groups]
|
|
49
|
+
test = ["pytest>=8"]
|
|
50
|
+
|
|
51
|
+
[tool.pytest.ini_options]
|
|
52
|
+
pythonpath = ["."]
|
|
53
|
+
testpaths = ["tests"]
|