toolery 0.0.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.
- toolery-0.0.0/PKG-INFO +27 -0
- toolery-0.0.0/README.md +10 -0
- toolery-0.0.0/pyproject.toml +24 -0
- toolery-0.0.0/toolery/__init__.py +12 -0
toolery-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: toolery
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: A searchable, self-maintaining catalog over any corpus of tools, skills, agents, and components.
|
|
5
|
+
Project-URL: Repository, https://github.com/thorwhalen/toolery
|
|
6
|
+
Project-URL: Issues, https://github.com/thorwhalen/toolery/issues
|
|
7
|
+
Author: Thor Whalen
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
Keywords: agents,catalog,discovery,mcp,retrieval,search,skills,tools
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# toolery
|
|
19
|
+
|
|
20
|
+
A searchable, self-maintaining catalog over any corpus of tools, skills, agents, and components.
|
|
21
|
+
|
|
22
|
+
Point `toolery` at a collection of heterogeneous assets — Claude skills, agent specs,
|
|
23
|
+
MCP tools, docs, or packages — and get one searchable catalog: ask *"what do I already
|
|
24
|
+
have for X?"* and get a ranked answer, not fifty schemas.
|
|
25
|
+
|
|
26
|
+
> **Status:** placeholder release (`0.0.0`) — claims the name. Implementation, built on
|
|
27
|
+
> the [`ir`](https://github.com/thorwhalen/ir) retrieval substrate, follows.
|
toolery-0.0.0/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# toolery
|
|
2
|
+
|
|
3
|
+
A searchable, self-maintaining catalog over any corpus of tools, skills, agents, and components.
|
|
4
|
+
|
|
5
|
+
Point `toolery` at a collection of heterogeneous assets — Claude skills, agent specs,
|
|
6
|
+
MCP tools, docs, or packages — and get one searchable catalog: ask *"what do I already
|
|
7
|
+
have for X?"* and get a ranked answer, not fifty schemas.
|
|
8
|
+
|
|
9
|
+
> **Status:** placeholder release (`0.0.0`) — claims the name. Implementation, built on
|
|
10
|
+
> the [`ir`](https://github.com/thorwhalen/ir) retrieval substrate, follows.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "toolery"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "A searchable, self-maintaining catalog over any corpus of tools, skills, agents, and components."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
keywords = ["catalog", "search", "discovery", "retrieval", "tools", "skills", "agents", "mcp"]
|
|
13
|
+
authors = [{ name = "Thor Whalen" }]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Programming Language :: Python :: 3.10",
|
|
19
|
+
"Topic :: Software Development :: Libraries",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Repository = "https://github.com/thorwhalen/toolery"
|
|
24
|
+
Issues = "https://github.com/thorwhalen/toolery/issues"
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"""toolery — a searchable catalog over any corpus of tools, skills, agents, and components.
|
|
2
|
+
|
|
3
|
+
Point ``toolery`` at a collection of heterogeneous assets — Claude skills, agent
|
|
4
|
+
specs, MCP tools, docs, or packages — and get one searchable, self-maintaining
|
|
5
|
+
catalog: ask *"what do I already have for X?"* and get a ranked answer, not fifty
|
|
6
|
+
schemas.
|
|
7
|
+
|
|
8
|
+
This is a placeholder release (0.0.0) that claims the name. The implementation,
|
|
9
|
+
built on the ``ir`` retrieval substrate, follows.
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
__version__ = "0.0.0"
|