harness-plugin 0.1.0__py3-none-any.whl
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.
- harness_plugin-0.1.0.dist-info/METADATA +20 -0
- harness_plugin-0.1.0.dist-info/RECORD +23 -0
- harness_plugin-0.1.0.dist-info/WHEEL +4 -0
- harness_plugin-0.1.0.dist-info/entry_points.txt +6 -0
- harnessml/plugin/__init__.py +1 -0
- harnessml/plugin/demo_data/housing.csv +20641 -0
- harnessml/plugin/event_emitter.py +114 -0
- harnessml/plugin/handlers/__init__.py +0 -0
- harnessml/plugin/handlers/_common.py +74 -0
- harnessml/plugin/handlers/_validation.py +221 -0
- harnessml/plugin/handlers/competitions.py +590 -0
- harnessml/plugin/handlers/config.py +322 -0
- harnessml/plugin/handlers/data.py +472 -0
- harnessml/plugin/handlers/experiments.py +302 -0
- harnessml/plugin/handlers/features.py +149 -0
- harnessml/plugin/handlers/models.py +254 -0
- harnessml/plugin/handlers/notebook.py +188 -0
- harnessml/plugin/handlers/pipeline.py +369 -0
- harnessml/plugin/mcp_server.py +940 -0
- harnessml/plugin/setup.py +198 -0
- harnessml/plugin/skills/harness-domain-research.md +275 -0
- harnessml/plugin/skills/harness-explore-space.md +247 -0
- harnessml/plugin/skills/harness-run-experiment.md +246 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: harness-plugin
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Claude Code plugin for AI-driven ML experimentation
|
|
5
|
+
Project-URL: Homepage, https://github.com/msilverblatt/harness-ml
|
|
6
|
+
Project-URL: Repository, https://github.com/msilverblatt/harness-ml
|
|
7
|
+
Project-URL: Issues, https://github.com/msilverblatt/harness-ml/issues
|
|
8
|
+
Author: Matt Silverblatt-Buser
|
|
9
|
+
License-Expression: MIT
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
17
|
+
Requires-Python: >=3.11
|
|
18
|
+
Requires-Dist: click>=8.0
|
|
19
|
+
Requires-Dist: harness-core<1.0,>=0.1.0
|
|
20
|
+
Requires-Dist: mcp>=1.0
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
harnessml/plugin/__init__.py,sha256=NaR4tzMcJIrU6TgX7m23fOUx_zCBGxDKhvlkfJ-vZkA,84
|
|
2
|
+
harnessml/plugin/event_emitter.py,sha256=0GgUt04H5dmlJbtXIRjRsemRn4LkONBL56_6248Yc30,4311
|
|
3
|
+
harnessml/plugin/mcp_server.py,sha256=P94ty9VsZIGDfXLKMImp78FVDCvTGQJWlXuLN-GOowg,37285
|
|
4
|
+
harnessml/plugin/setup.py,sha256=HorhPpjZdqvCLu6V4091KelKSZLZ0YxuHdElyOj3xfc,6844
|
|
5
|
+
harnessml/plugin/demo_data/housing.csv,sha256=lwAknQguGgl1pcwEb9_-BHmO8IPr25rJT4BQrrQ7Itc,1895178
|
|
6
|
+
harnessml/plugin/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
harnessml/plugin/handlers/_common.py,sha256=Z6AFEd_-cdYQiwhV9PXQhHFmSK8zfhVqlCZqMeGTjB4,2399
|
|
8
|
+
harnessml/plugin/handlers/_validation.py,sha256=OQR87aeyJAezBZYxqL-YOpeTdAGw_h4OZcswY4bzzzE,8236
|
|
9
|
+
harnessml/plugin/handlers/competitions.py,sha256=z--tgCS5l724ZpwZdx4cl7GU1hvi36YE97UssYTvzqM,19406
|
|
10
|
+
harnessml/plugin/handlers/config.py,sha256=7LNNd_Z1pR03VytmFd70YtTGfWB7A_mrT9J6XrRwSH0,10882
|
|
11
|
+
harnessml/plugin/handlers/data.py,sha256=RsdHF-rOGWynHHWUXSfA-kXyas-YaFqeZcNAvhfHj-U,15672
|
|
12
|
+
harnessml/plugin/handlers/experiments.py,sha256=FnOzSFfg6b6eXZS_UJwk-pIUzg2rfoCVasf5b9xUeZc,9739
|
|
13
|
+
harnessml/plugin/handlers/features.py,sha256=xVdbUccd82AKPKKUhUC2n6ENwSxeAE_oCerJsGFy2Lc,4639
|
|
14
|
+
harnessml/plugin/handlers/models.py,sha256=WxfziflQFGDLbQzVd0-4kS9R2ar8r2J-DfPb_7OmYY4,9250
|
|
15
|
+
harnessml/plugin/handlers/notebook.py,sha256=gnVYjgMxeckvqL9Mg-7XZGV9tVwlfyces-0VkaOdRZs,5669
|
|
16
|
+
harnessml/plugin/handlers/pipeline.py,sha256=wC3uNkSlBIbEi1esHBVStCqS5IrscIICgtHSWkKpkTs,12430
|
|
17
|
+
harnessml/plugin/skills/harness-domain-research.md,sha256=6ZHhDxvOsz3Td_5Ty1bg3nA51PEe8M-NSZS2ydhhYPk,13177
|
|
18
|
+
harnessml/plugin/skills/harness-explore-space.md,sha256=bjVaSjY5WC2pTMl_ReL0R_0z3R5_YridgWfc4_14lOA,9439
|
|
19
|
+
harnessml/plugin/skills/harness-run-experiment.md,sha256=iafhOVfPJMlHPKSFySAP97j4nTJ3xjG1O0zcuwWVQX4,11505
|
|
20
|
+
harness_plugin-0.1.0.dist-info/METADATA,sha256=RPBTiETmlFbnY-87i691uH1MVIhSQ5a5h-Mwyi37UJo,853
|
|
21
|
+
harness_plugin-0.1.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
22
|
+
harness_plugin-0.1.0.dist-info/entry_points.txt,sha256=nY9r0Hzd-ODa-ZNjbiVD7SnDFZ9CHi57XwFammCb4sw,170
|
|
23
|
+
harness_plugin-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""HarnessML Claude Code plugin — MCP server for AI-driven ML experimentation."""
|