invocator 0.0.1__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.
- invocator-0.0.1/PKG-INFO +40 -0
- invocator-0.0.1/README.md +19 -0
- invocator-0.0.1/pyproject.toml +31 -0
- invocator-0.0.1/src/invocator/__init__.py +1 -0
invocator-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: invocator
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Summon the accumulated wisdom of a GitHub repository into a learnings/ grimoire.
|
|
5
|
+
Project-URL: Homepage, https://github.com/Gab-r-x/invocator
|
|
6
|
+
Project-URL: Repository, https://github.com/Gab-r-x/invocator
|
|
7
|
+
Project-URL: Issues, https://github.com/Gab-r-x/invocator/issues
|
|
8
|
+
Author-email: Gabriel <gabriel@quizard.ai>
|
|
9
|
+
License-Expression: MIT
|
|
10
|
+
Keywords: code-review,documentation,github,learnings,llm
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Environment :: Console
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Topic :: Software Development :: Documentation
|
|
19
|
+
Requires-Python: >=3.11
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
|
|
22
|
+
# invocator
|
|
23
|
+
|
|
24
|
+
> Summon the accumulated wisdom of a GitHub repository into a `learnings/` grimoire.
|
|
25
|
+
|
|
26
|
+
🚧 **This is a placeholder release (0.0.1).** The real CLI is under active development.
|
|
27
|
+
|
|
28
|
+
See https://github.com/Gab-r-x/invocator for progress and the MVP plan.
|
|
29
|
+
|
|
30
|
+
## Coming soon
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
invocator forge key # bind a pact with Anthropic
|
|
34
|
+
invocator scry cost --repo owner/name # preview cost / time / item counts
|
|
35
|
+
invocator extract wisdom --repo owner/name # the full ritual
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
MIT
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# invocator
|
|
2
|
+
|
|
3
|
+
> Summon the accumulated wisdom of a GitHub repository into a `learnings/` grimoire.
|
|
4
|
+
|
|
5
|
+
🚧 **This is a placeholder release (0.0.1).** The real CLI is under active development.
|
|
6
|
+
|
|
7
|
+
See https://github.com/Gab-r-x/invocator for progress and the MVP plan.
|
|
8
|
+
|
|
9
|
+
## Coming soon
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
invocator forge key # bind a pact with Anthropic
|
|
13
|
+
invocator scry cost --repo owner/name # preview cost / time / item counts
|
|
14
|
+
invocator extract wisdom --repo owner/name # the full ritual
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## License
|
|
18
|
+
|
|
19
|
+
MIT
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "invocator"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Summon the accumulated wisdom of a GitHub repository into a learnings/ grimoire."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "MIT"
|
|
7
|
+
authors = [{name = "Gabriel", email = "gabriel@quizard.ai"}]
|
|
8
|
+
requires-python = ">=3.11"
|
|
9
|
+
keywords = ["github", "llm", "documentation", "code-review", "learnings"]
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Development Status :: 1 - Planning",
|
|
12
|
+
"Environment :: Console",
|
|
13
|
+
"Intended Audience :: Developers",
|
|
14
|
+
"License :: OSI Approved :: MIT License",
|
|
15
|
+
"Programming Language :: Python :: 3.11",
|
|
16
|
+
"Programming Language :: Python :: 3.12",
|
|
17
|
+
"Programming Language :: Python :: 3.13",
|
|
18
|
+
"Topic :: Software Development :: Documentation",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://github.com/Gab-r-x/invocator"
|
|
23
|
+
Repository = "https://github.com/Gab-r-x/invocator"
|
|
24
|
+
Issues = "https://github.com/Gab-r-x/invocator/issues"
|
|
25
|
+
|
|
26
|
+
[build-system]
|
|
27
|
+
requires = ["hatchling"]
|
|
28
|
+
build-backend = "hatchling.build"
|
|
29
|
+
|
|
30
|
+
[tool.hatch.build.targets.wheel]
|
|
31
|
+
packages = ["src/invocator"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|