scitoolkit 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.
- scitoolkit-0.1.0/LICENSE +21 -0
- scitoolkit-0.1.0/PKG-INFO +116 -0
- scitoolkit-0.1.0/README.md +82 -0
- scitoolkit-0.1.0/pyproject.toml +48 -0
- scitoolkit-0.1.0/scitoolkit/__init__.py +22 -0
- scitoolkit-0.1.0/scitoolkit/astro.py +9 -0
- scitoolkit-0.1.0/scitoolkit/hep.py +8 -0
- scitoolkit-0.1.0/scitoolkit/neutrino.py +7 -0
- scitoolkit-0.1.0/scitoolkit/quantum.py +7 -0
- scitoolkit-0.1.0/scitoolkit.egg-info/PKG-INFO +116 -0
- scitoolkit-0.1.0/scitoolkit.egg-info/SOURCES.txt +13 -0
- scitoolkit-0.1.0/scitoolkit.egg-info/dependency_links.txt +1 -0
- scitoolkit-0.1.0/scitoolkit.egg-info/requires.txt +5 -0
- scitoolkit-0.1.0/scitoolkit.egg-info/top_level.txt +1 -0
- scitoolkit-0.1.0/setup.cfg +4 -0
scitoolkit-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Alex Roman
|
|
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.
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: scitoolkit
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A community repository for scientific agentic tools - discover, share, and use AI tools for science
|
|
5
|
+
Author: Alex Roman
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/adroman/scitoolkit
|
|
8
|
+
Project-URL: Documentation, https://github.com/adroman/scitoolkit#readme
|
|
9
|
+
Project-URL: Repository, https://github.com/adroman/scitoolkit
|
|
10
|
+
Project-URL: Issues, https://github.com/adroman/scitoolkit/issues
|
|
11
|
+
Keywords: ai,agents,science,tools,mcp,orchestral,astrophysics,physics,quantum
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Science/Research
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Topic :: Scientific/Engineering
|
|
16
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
17
|
+
Classifier: Topic :: Scientific/Engineering :: Astronomy
|
|
18
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
19
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
20
|
+
Classifier: Programming Language :: Python :: 3
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
26
|
+
Requires-Python: >=3.8
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
License-File: LICENSE
|
|
29
|
+
Provides-Extra: dev
|
|
30
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
31
|
+
Requires-Dist: black>=23.0; extra == "dev"
|
|
32
|
+
Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
33
|
+
Dynamic: license-file
|
|
34
|
+
|
|
35
|
+
# SciToolkit
|
|
36
|
+
|
|
37
|
+
**A Community Repository for Scientific Agentic Tools**
|
|
38
|
+
|
|
39
|
+
SciToolkit is a centralized platform for discovering, sharing, and using scientific tools for AI agents. Think of it as an app store for scientific agentic tools across domains like astrophysics, high-energy physics, quantum computing, neutrino physics, and more.
|
|
40
|
+
|
|
41
|
+
## Vision
|
|
42
|
+
|
|
43
|
+
Making it as easy as possible for researchers to:
|
|
44
|
+
- **Create** scientific tools for AI agents
|
|
45
|
+
- **Publish** and share tools with the community
|
|
46
|
+
- **Search** and discover tools across scientific domains
|
|
47
|
+
- **Download** and use tools seamlessly
|
|
48
|
+
- **Contribute** to open scientific AI infrastructure
|
|
49
|
+
|
|
50
|
+
## Features (Planned)
|
|
51
|
+
|
|
52
|
+
- **Easy Tool Creation**: Build tools using Orchestral AI with universal representation
|
|
53
|
+
- **MCP Compatible**: Full Model Context Protocol support for broad agent compatibility
|
|
54
|
+
- **Curated Categories**: Domain-organized tools (astro, hep, quantum, etc.)
|
|
55
|
+
- **VSCode Extension**: Browse, install, and manage tools directly in your IDE
|
|
56
|
+
- **Auto-Configuration**: One-click setup for Claude Code, Codex, and other agent frameworks
|
|
57
|
+
- **Web UI**: PyPI-like interface for browsing and managing tools
|
|
58
|
+
- **Version Control**: Built-in support for tool versioning and updates
|
|
59
|
+
|
|
60
|
+
## Installation
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
pip install scitoolkit
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
## Usage (Coming Soon)
|
|
67
|
+
|
|
68
|
+
### For Scripts
|
|
69
|
+
|
|
70
|
+
```python
|
|
71
|
+
# Import tools from specific domains
|
|
72
|
+
from scitoolkit.astro import aster
|
|
73
|
+
from scitoolkit.hep import heptapod
|
|
74
|
+
from scitoolkit.quantum import quantum_toolkit
|
|
75
|
+
|
|
76
|
+
# Use with your favorite agent framework
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
### For VSCode Extension
|
|
80
|
+
|
|
81
|
+
1. Install the SciToolkit extension
|
|
82
|
+
2. Search for tools by domain or name
|
|
83
|
+
3. View metadata, README, and features
|
|
84
|
+
4. Install and activate selected tools
|
|
85
|
+
5. Auto-configure your agent framework
|
|
86
|
+
|
|
87
|
+
## Included Toolkits
|
|
88
|
+
|
|
89
|
+
- **ASTER** (Agentic Science Toolkit for Exoplanet Research) - Tools for exoplanet research
|
|
90
|
+
- **HEPTAPOD** (High Energy Physics Toolkit for Agentic ...) - Tools for high-energy physics
|
|
91
|
+
- **Quantum Toolkit** - Tools for quantum computing research
|
|
92
|
+
- **Neutrino Toolkit** - Tools for neutrino physics research
|
|
93
|
+
|
|
94
|
+
## Architecture
|
|
95
|
+
|
|
96
|
+
SciToolkit is built on:
|
|
97
|
+
- **Orchestral AI**: Universal tool representation and creation
|
|
98
|
+
- **MCP (Model Context Protocol)**: Standard protocol for tool communication
|
|
99
|
+
- **HTTP/STDIO Servers**: Flexible hosting options for tools
|
|
100
|
+
|
|
101
|
+
## Contributing
|
|
102
|
+
|
|
103
|
+
We welcome contributions! SciToolkit is designed to be community-driven. More details coming soon.
|
|
104
|
+
|
|
105
|
+
## Current Status
|
|
106
|
+
|
|
107
|
+
🚧 **Alpha Stage**: This package is in early development. The name is secured on PyPI while we build out the full platform.
|
|
108
|
+
|
|
109
|
+
## License
|
|
110
|
+
|
|
111
|
+
MIT License
|
|
112
|
+
|
|
113
|
+
## Links
|
|
114
|
+
|
|
115
|
+
- GitHub: https://github.com/adroman/scitoolkit
|
|
116
|
+
- Issues: https://github.com/adroman/scitoolkit/issues
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# SciToolkit
|
|
2
|
+
|
|
3
|
+
**A Community Repository for Scientific Agentic Tools**
|
|
4
|
+
|
|
5
|
+
SciToolkit is a centralized platform for discovering, sharing, and using scientific tools for AI agents. Think of it as an app store for scientific agentic tools across domains like astrophysics, high-energy physics, quantum computing, neutrino physics, and more.
|
|
6
|
+
|
|
7
|
+
## Vision
|
|
8
|
+
|
|
9
|
+
Making it as easy as possible for researchers to:
|
|
10
|
+
- **Create** scientific tools for AI agents
|
|
11
|
+
- **Publish** and share tools with the community
|
|
12
|
+
- **Search** and discover tools across scientific domains
|
|
13
|
+
- **Download** and use tools seamlessly
|
|
14
|
+
- **Contribute** to open scientific AI infrastructure
|
|
15
|
+
|
|
16
|
+
## Features (Planned)
|
|
17
|
+
|
|
18
|
+
- **Easy Tool Creation**: Build tools using Orchestral AI with universal representation
|
|
19
|
+
- **MCP Compatible**: Full Model Context Protocol support for broad agent compatibility
|
|
20
|
+
- **Curated Categories**: Domain-organized tools (astro, hep, quantum, etc.)
|
|
21
|
+
- **VSCode Extension**: Browse, install, and manage tools directly in your IDE
|
|
22
|
+
- **Auto-Configuration**: One-click setup for Claude Code, Codex, and other agent frameworks
|
|
23
|
+
- **Web UI**: PyPI-like interface for browsing and managing tools
|
|
24
|
+
- **Version Control**: Built-in support for tool versioning and updates
|
|
25
|
+
|
|
26
|
+
## Installation
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
pip install scitoolkit
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Usage (Coming Soon)
|
|
33
|
+
|
|
34
|
+
### For Scripts
|
|
35
|
+
|
|
36
|
+
```python
|
|
37
|
+
# Import tools from specific domains
|
|
38
|
+
from scitoolkit.astro import aster
|
|
39
|
+
from scitoolkit.hep import heptapod
|
|
40
|
+
from scitoolkit.quantum import quantum_toolkit
|
|
41
|
+
|
|
42
|
+
# Use with your favorite agent framework
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
### For VSCode Extension
|
|
46
|
+
|
|
47
|
+
1. Install the SciToolkit extension
|
|
48
|
+
2. Search for tools by domain or name
|
|
49
|
+
3. View metadata, README, and features
|
|
50
|
+
4. Install and activate selected tools
|
|
51
|
+
5. Auto-configure your agent framework
|
|
52
|
+
|
|
53
|
+
## Included Toolkits
|
|
54
|
+
|
|
55
|
+
- **ASTER** (Agentic Science Toolkit for Exoplanet Research) - Tools for exoplanet research
|
|
56
|
+
- **HEPTAPOD** (High Energy Physics Toolkit for Agentic ...) - Tools for high-energy physics
|
|
57
|
+
- **Quantum Toolkit** - Tools for quantum computing research
|
|
58
|
+
- **Neutrino Toolkit** - Tools for neutrino physics research
|
|
59
|
+
|
|
60
|
+
## Architecture
|
|
61
|
+
|
|
62
|
+
SciToolkit is built on:
|
|
63
|
+
- **Orchestral AI**: Universal tool representation and creation
|
|
64
|
+
- **MCP (Model Context Protocol)**: Standard protocol for tool communication
|
|
65
|
+
- **HTTP/STDIO Servers**: Flexible hosting options for tools
|
|
66
|
+
|
|
67
|
+
## Contributing
|
|
68
|
+
|
|
69
|
+
We welcome contributions! SciToolkit is designed to be community-driven. More details coming soon.
|
|
70
|
+
|
|
71
|
+
## Current Status
|
|
72
|
+
|
|
73
|
+
🚧 **Alpha Stage**: This package is in early development. The name is secured on PyPI while we build out the full platform.
|
|
74
|
+
|
|
75
|
+
## License
|
|
76
|
+
|
|
77
|
+
MIT License
|
|
78
|
+
|
|
79
|
+
## Links
|
|
80
|
+
|
|
81
|
+
- GitHub: https://github.com/adroman/scitoolkit
|
|
82
|
+
- Issues: https://github.com/adroman/scitoolkit/issues
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "scitoolkit"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "A community repository for scientific agentic tools - discover, share, and use AI tools for science"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Alex Roman"}
|
|
14
|
+
]
|
|
15
|
+
keywords = ["ai", "agents", "science", "tools", "mcp", "orchestral", "astrophysics", "physics", "quantum"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 3 - Alpha",
|
|
18
|
+
"Intended Audience :: Science/Research",
|
|
19
|
+
"Intended Audience :: Developers",
|
|
20
|
+
"Topic :: Scientific/Engineering",
|
|
21
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
22
|
+
"Topic :: Scientific/Engineering :: Astronomy",
|
|
23
|
+
"Topic :: Scientific/Engineering :: Physics",
|
|
24
|
+
"License :: OSI Approved :: MIT License",
|
|
25
|
+
"Programming Language :: Python :: 3",
|
|
26
|
+
"Programming Language :: Python :: 3.8",
|
|
27
|
+
"Programming Language :: Python :: 3.9",
|
|
28
|
+
"Programming Language :: Python :: 3.10",
|
|
29
|
+
"Programming Language :: Python :: 3.11",
|
|
30
|
+
"Programming Language :: Python :: 3.12",
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[project.urls]
|
|
34
|
+
Homepage = "https://github.com/adroman/scitoolkit"
|
|
35
|
+
Documentation = "https://github.com/adroman/scitoolkit#readme"
|
|
36
|
+
Repository = "https://github.com/adroman/scitoolkit"
|
|
37
|
+
Issues = "https://github.com/adroman/scitoolkit/issues"
|
|
38
|
+
|
|
39
|
+
[project.optional-dependencies]
|
|
40
|
+
dev = [
|
|
41
|
+
"pytest>=7.0",
|
|
42
|
+
"black>=23.0",
|
|
43
|
+
"ruff>=0.1.0",
|
|
44
|
+
]
|
|
45
|
+
|
|
46
|
+
[tool.setuptools.packages.find]
|
|
47
|
+
where = ["."]
|
|
48
|
+
include = ["scitoolkit*"]
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"""
|
|
2
|
+
SciToolkit - A Community Repository for Scientific Agentic Tools
|
|
3
|
+
|
|
4
|
+
SciToolkit provides a centralized platform for discovering, sharing, and using
|
|
5
|
+
scientific tools for AI agents. Think of it as an app store for scientific
|
|
6
|
+
agentic tools across domains like astrophysics, high-energy physics, quantum
|
|
7
|
+
computing, and more.
|
|
8
|
+
|
|
9
|
+
Features:
|
|
10
|
+
- Easy tool creation and sharing
|
|
11
|
+
- Curated categories by scientific domain
|
|
12
|
+
- MCP (Model Context Protocol) compatibility
|
|
13
|
+
- Integration with Orchestral AI and other agent frameworks
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
__version__ = "0.1.0"
|
|
17
|
+
__author__ = "Alex Roman"
|
|
18
|
+
|
|
19
|
+
# Placeholder imports for future toolkit categories
|
|
20
|
+
# from .astro import aster
|
|
21
|
+
# from .hep import heptapod
|
|
22
|
+
# from .quantum import quantum_toolkit
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Astrophysics Tools
|
|
3
|
+
|
|
4
|
+
This module will contain tools for astrophysics and exoplanet research,
|
|
5
|
+
including the ASTER (Agentic Science Toolkit for Exoplanet Research) toolkit.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
# Placeholder for future ASTER toolkit integration
|
|
9
|
+
# from aster_toolkit import RunForwardModelTool, ...
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: scitoolkit
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A community repository for scientific agentic tools - discover, share, and use AI tools for science
|
|
5
|
+
Author: Alex Roman
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/adroman/scitoolkit
|
|
8
|
+
Project-URL: Documentation, https://github.com/adroman/scitoolkit#readme
|
|
9
|
+
Project-URL: Repository, https://github.com/adroman/scitoolkit
|
|
10
|
+
Project-URL: Issues, https://github.com/adroman/scitoolkit/issues
|
|
11
|
+
Keywords: ai,agents,science,tools,mcp,orchestral,astrophysics,physics,quantum
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Science/Research
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Topic :: Scientific/Engineering
|
|
16
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
17
|
+
Classifier: Topic :: Scientific/Engineering :: Astronomy
|
|
18
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
19
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
20
|
+
Classifier: Programming Language :: Python :: 3
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
26
|
+
Requires-Python: >=3.8
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
License-File: LICENSE
|
|
29
|
+
Provides-Extra: dev
|
|
30
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
31
|
+
Requires-Dist: black>=23.0; extra == "dev"
|
|
32
|
+
Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
33
|
+
Dynamic: license-file
|
|
34
|
+
|
|
35
|
+
# SciToolkit
|
|
36
|
+
|
|
37
|
+
**A Community Repository for Scientific Agentic Tools**
|
|
38
|
+
|
|
39
|
+
SciToolkit is a centralized platform for discovering, sharing, and using scientific tools for AI agents. Think of it as an app store for scientific agentic tools across domains like astrophysics, high-energy physics, quantum computing, neutrino physics, and more.
|
|
40
|
+
|
|
41
|
+
## Vision
|
|
42
|
+
|
|
43
|
+
Making it as easy as possible for researchers to:
|
|
44
|
+
- **Create** scientific tools for AI agents
|
|
45
|
+
- **Publish** and share tools with the community
|
|
46
|
+
- **Search** and discover tools across scientific domains
|
|
47
|
+
- **Download** and use tools seamlessly
|
|
48
|
+
- **Contribute** to open scientific AI infrastructure
|
|
49
|
+
|
|
50
|
+
## Features (Planned)
|
|
51
|
+
|
|
52
|
+
- **Easy Tool Creation**: Build tools using Orchestral AI with universal representation
|
|
53
|
+
- **MCP Compatible**: Full Model Context Protocol support for broad agent compatibility
|
|
54
|
+
- **Curated Categories**: Domain-organized tools (astro, hep, quantum, etc.)
|
|
55
|
+
- **VSCode Extension**: Browse, install, and manage tools directly in your IDE
|
|
56
|
+
- **Auto-Configuration**: One-click setup for Claude Code, Codex, and other agent frameworks
|
|
57
|
+
- **Web UI**: PyPI-like interface for browsing and managing tools
|
|
58
|
+
- **Version Control**: Built-in support for tool versioning and updates
|
|
59
|
+
|
|
60
|
+
## Installation
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
pip install scitoolkit
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
## Usage (Coming Soon)
|
|
67
|
+
|
|
68
|
+
### For Scripts
|
|
69
|
+
|
|
70
|
+
```python
|
|
71
|
+
# Import tools from specific domains
|
|
72
|
+
from scitoolkit.astro import aster
|
|
73
|
+
from scitoolkit.hep import heptapod
|
|
74
|
+
from scitoolkit.quantum import quantum_toolkit
|
|
75
|
+
|
|
76
|
+
# Use with your favorite agent framework
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
### For VSCode Extension
|
|
80
|
+
|
|
81
|
+
1. Install the SciToolkit extension
|
|
82
|
+
2. Search for tools by domain or name
|
|
83
|
+
3. View metadata, README, and features
|
|
84
|
+
4. Install and activate selected tools
|
|
85
|
+
5. Auto-configure your agent framework
|
|
86
|
+
|
|
87
|
+
## Included Toolkits
|
|
88
|
+
|
|
89
|
+
- **ASTER** (Agentic Science Toolkit for Exoplanet Research) - Tools for exoplanet research
|
|
90
|
+
- **HEPTAPOD** (High Energy Physics Toolkit for Agentic ...) - Tools for high-energy physics
|
|
91
|
+
- **Quantum Toolkit** - Tools for quantum computing research
|
|
92
|
+
- **Neutrino Toolkit** - Tools for neutrino physics research
|
|
93
|
+
|
|
94
|
+
## Architecture
|
|
95
|
+
|
|
96
|
+
SciToolkit is built on:
|
|
97
|
+
- **Orchestral AI**: Universal tool representation and creation
|
|
98
|
+
- **MCP (Model Context Protocol)**: Standard protocol for tool communication
|
|
99
|
+
- **HTTP/STDIO Servers**: Flexible hosting options for tools
|
|
100
|
+
|
|
101
|
+
## Contributing
|
|
102
|
+
|
|
103
|
+
We welcome contributions! SciToolkit is designed to be community-driven. More details coming soon.
|
|
104
|
+
|
|
105
|
+
## Current Status
|
|
106
|
+
|
|
107
|
+
🚧 **Alpha Stage**: This package is in early development. The name is secured on PyPI while we build out the full platform.
|
|
108
|
+
|
|
109
|
+
## License
|
|
110
|
+
|
|
111
|
+
MIT License
|
|
112
|
+
|
|
113
|
+
## Links
|
|
114
|
+
|
|
115
|
+
- GitHub: https://github.com/adroman/scitoolkit
|
|
116
|
+
- Issues: https://github.com/adroman/scitoolkit/issues
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
scitoolkit/__init__.py
|
|
5
|
+
scitoolkit/astro.py
|
|
6
|
+
scitoolkit/hep.py
|
|
7
|
+
scitoolkit/neutrino.py
|
|
8
|
+
scitoolkit/quantum.py
|
|
9
|
+
scitoolkit.egg-info/PKG-INFO
|
|
10
|
+
scitoolkit.egg-info/SOURCES.txt
|
|
11
|
+
scitoolkit.egg-info/dependency_links.txt
|
|
12
|
+
scitoolkit.egg-info/requires.txt
|
|
13
|
+
scitoolkit.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
scitoolkit
|