encode-toolkit 0.3.1__tar.gz → 0.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.
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/.gitignore +10 -3
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/CHANGELOG.md +16 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/CITATION.cff +1 -1
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/PKG-INFO +2 -2
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/README.md +1 -1
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/pyproject.toml +1 -1
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/client/constants.py +1 -1
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/LICENSE +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/PRIVACY.md +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/SECURITY.md +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/conftest.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/__init__.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/__main__.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/client/__init__.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/client/auth.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/client/downloader.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/client/encode_client.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/client/models.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/client/tracker.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/client/validation.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/server/__init__.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/server/__main__.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/server/main.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/__init__.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/test_auth.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/test_bioinformatics_audit.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/test_client.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/test_downloader.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/test_models.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/test_packaging.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/test_server.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/test_tool_responses.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/test_tracker.py +0 -0
- {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/test_validation.py +0 -0
|
@@ -37,9 +37,16 @@ node_modules/
|
|
|
37
37
|
*.swp
|
|
38
38
|
*.swo
|
|
39
39
|
|
|
40
|
-
#
|
|
41
|
-
.claude/
|
|
42
|
-
.
|
|
40
|
+
# AI assistant configuration and notes (never commit)
|
|
41
|
+
.claude/
|
|
42
|
+
CLAUDE.md
|
|
43
|
+
CLAUDE.local.md
|
|
44
|
+
AGENTS.md
|
|
45
|
+
GEMINI.md
|
|
46
|
+
.mcp.json
|
|
47
|
+
!plugin/.mcp.json
|
|
48
|
+
.cursorrules
|
|
49
|
+
.aider*
|
|
43
50
|
|
|
44
51
|
# Runtime data
|
|
45
52
|
*.db
|
|
@@ -5,6 +5,22 @@ All notable changes to the ENCODE Toolkit will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.3.2] - 2026-09-20
|
|
9
|
+
|
|
10
|
+
Maintenance release. The Python package is functionally identical to 0.3.1.
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- `bioinformatics-installer` skill: the ChIP-seq walkthrough pointed at `scripts/chipseq-env.yml`
|
|
15
|
+
(the file lives in `environments/`) and at an `annotation-env.yml` that did not exist. The first
|
|
16
|
+
path is corrected and the second is replaced with an explicit `conda create` command.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Removed local tooling configuration files from the repository and ignored them going forward.
|
|
21
|
+
- `CONTRIBUTING.md` and `docs/SHOWCASE.md` now use the ENCODE Toolkit name and the current skill
|
|
22
|
+
count (47).
|
|
23
|
+
|
|
8
24
|
## [0.3.1] - 2026-09-20
|
|
9
25
|
|
|
10
26
|
### Fixed
|
|
@@ -8,7 +8,7 @@ authors:
|
|
|
8
8
|
given-names: Alex M.
|
|
9
9
|
orcid: "https://orcid.org/0000-0003-0907-464X"
|
|
10
10
|
affiliation: "Independent Researcher"
|
|
11
|
-
version: 0.3.
|
|
11
|
+
version: 0.3.2
|
|
12
12
|
date-released: "2026-09-20"
|
|
13
13
|
license: AGPL-3.0-only
|
|
14
14
|
repository-code: "https://github.com/ammawla/encode-toolkit"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: encode-toolkit
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: MCP server for querying and downloading ENCODE Project genomics data directly from Claude
|
|
5
5
|
Project-URL: Homepage, https://github.com/ammawla/encode-toolkit
|
|
6
6
|
Project-URL: Repository, https://github.com/ammawla/encode-toolkit
|
|
@@ -37,7 +37,7 @@ Description-Content-Type: text/markdown
|
|
|
37
37
|
|
|
38
38
|
[](LICENSE)
|
|
39
39
|
[](https://www.python.org/downloads/)
|
|
40
|
-
[](CHANGELOG.md)
|
|
41
41
|
[]()
|
|
42
42
|
[](docs/skill-vignettes/)
|
|
43
43
|
[](src/encode_connector/server/main.py)
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
[](https://www.python.org/downloads/)
|
|
7
|
-
[](CHANGELOG.md)
|
|
8
8
|
[]()
|
|
9
9
|
[](docs/skill-vignettes/)
|
|
10
10
|
[](src/encode_connector/server/main.py)
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "encode-toolkit"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.2"
|
|
8
8
|
description = "MCP server for querying and downloading ENCODE Project genomics data directly from Claude"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "AGPL-3.0-only"
|
|
@@ -17,7 +17,7 @@ try:
|
|
|
17
17
|
|
|
18
18
|
_version = importlib.metadata.version("encode-toolkit")
|
|
19
19
|
except importlib.metadata.PackageNotFoundError:
|
|
20
|
-
_version = "0.3.
|
|
20
|
+
_version = "0.3.2"
|
|
21
21
|
USER_AGENT = f"encode-toolkit/{_version} (MCP; +https://github.com/ammawla/encode-toolkit)"
|
|
22
22
|
|
|
23
23
|
# Keyring service name for credential storage
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|