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.
Files changed (34) hide show
  1. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/.gitignore +10 -3
  2. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/CHANGELOG.md +16 -0
  3. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/CITATION.cff +1 -1
  4. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/PKG-INFO +2 -2
  5. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/README.md +1 -1
  6. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/pyproject.toml +1 -1
  7. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/client/constants.py +1 -1
  8. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/LICENSE +0 -0
  9. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/PRIVACY.md +0 -0
  10. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/SECURITY.md +0 -0
  11. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/conftest.py +0 -0
  12. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/__init__.py +0 -0
  13. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/__main__.py +0 -0
  14. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/client/__init__.py +0 -0
  15. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/client/auth.py +0 -0
  16. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/client/downloader.py +0 -0
  17. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/client/encode_client.py +0 -0
  18. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/client/models.py +0 -0
  19. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/client/tracker.py +0 -0
  20. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/client/validation.py +0 -0
  21. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/server/__init__.py +0 -0
  22. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/server/__main__.py +0 -0
  23. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/src/encode_connector/server/main.py +0 -0
  24. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/__init__.py +0 -0
  25. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/test_auth.py +0 -0
  26. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/test_bioinformatics_audit.py +0 -0
  27. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/test_client.py +0 -0
  28. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/test_downloader.py +0 -0
  29. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/test_models.py +0 -0
  30. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/test_packaging.py +0 -0
  31. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/test_server.py +0 -0
  32. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/test_tool_responses.py +0 -0
  33. {encode_toolkit-0.3.1 → encode_toolkit-0.3.2}/tests/test_tracker.py +0 -0
  34. {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
- # Claude Code local files
41
- .claude/settings.local.json
42
- .claude/*.local.md
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.1
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.1
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: AGPL-3.0](https://img.shields.io/badge/license-AGPL--3.0-green.svg)](LICENSE)
39
39
  [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
40
- [![Version](https://img.shields.io/badge/version-0.3.1-green)](CHANGELOG.md)
40
+ [![Version](https://img.shields.io/badge/version-0.3.2-green)](CHANGELOG.md)
41
41
  [![Status](https://img.shields.io/badge/status-beta-yellow)]()
42
42
  [![Skills](https://img.shields.io/badge/skills-47-orange)](docs/skill-vignettes/)
43
43
  [![Tools](https://img.shields.io/badge/MCP_tools-20-purple)](src/encode_connector/server/main.py)
@@ -4,7 +4,7 @@
4
4
 
5
5
  [![License: AGPL-3.0](https://img.shields.io/badge/license-AGPL--3.0-green.svg)](LICENSE)
6
6
  [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
7
- [![Version](https://img.shields.io/badge/version-0.3.1-green)](CHANGELOG.md)
7
+ [![Version](https://img.shields.io/badge/version-0.3.2-green)](CHANGELOG.md)
8
8
  [![Status](https://img.shields.io/badge/status-beta-yellow)]()
9
9
  [![Skills](https://img.shields.io/badge/skills-47-orange)](docs/skill-vignettes/)
10
10
  [![Tools](https://img.shields.io/badge/MCP_tools-20-purple)](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.1"
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.1"
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