matimo-github 0.1.0a14.post1__tar.gz → 0.1.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.
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/.gitignore +7 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/PKG-INFO +2 -2
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/pyproject.toml +2 -2
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/README.md +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/__init__.py +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/add-collaborator/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/create-issue/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/create-pull-request/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/create-release/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/create-repository/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/delete-repository/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/get-issue/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/get-repository/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/list-code-alerts/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/list-collaborators/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/list-commits/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/list-issues/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/list-pull-requests/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/list-releases/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/list-repositories/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/merge-pull-request/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/search-code/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/search-issues/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/search-repositories/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/search-users/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/update-code-alert/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.2}/src/matimo_github/tools/update-issue/definition.yaml +0 -0
|
@@ -7,6 +7,9 @@ yarn.lock
|
|
|
7
7
|
**/dist/
|
|
8
8
|
*.tsbuildinfo
|
|
9
9
|
|
|
10
|
+
# Compiled type:function tool entrypoints (generated by `pnpm build` from tools/**/*.ts)
|
|
11
|
+
typescript/packages/*/tools/**/*.js
|
|
12
|
+
|
|
10
13
|
# Python compiled / build
|
|
11
14
|
**/__pycache__/
|
|
12
15
|
*.py[cod]
|
|
@@ -23,6 +26,7 @@ yarn.lock
|
|
|
23
26
|
# Test coverage
|
|
24
27
|
**/coverage/
|
|
25
28
|
**/.nyc_output/
|
|
29
|
+
**/.coverage
|
|
26
30
|
|
|
27
31
|
# IDE
|
|
28
32
|
.vscode/
|
|
@@ -51,6 +55,9 @@ Thumbs.db
|
|
|
51
55
|
tmp/
|
|
52
56
|
temp/
|
|
53
57
|
*.tmp
|
|
58
|
+
|
|
59
|
+
# Personal scratch notes / working docs — not part of the shipped repo
|
|
60
|
+
.local-notes/
|
|
54
61
|
typescript/examples/mcp/matimo-tools/.matimo-approvals.json
|
|
55
62
|
typescript/examples/mcp/matimo-tools/fetch-weather/definition.yaml
|
|
56
63
|
typescript/examples/mcp/matimo-tools/npm_downloads/definition.yaml
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: matimo-github
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Matimo provider — GitHub tools (repos, issues, PRs, releases)
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: agents,ai,github,matimo,tools
|
|
@@ -9,7 +9,7 @@ Classifier: Intended Audience :: Developers
|
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.11
|
|
11
11
|
Requires-Python: >=3.11
|
|
12
|
-
Requires-Dist: matimo-core<0.2.0,>=0.1.
|
|
12
|
+
Requires-Dist: matimo-core<0.2.0,>=0.1.0
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
|
|
15
15
|
# matimo-github
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "matimo-github"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.2"
|
|
8
8
|
description = "Matimo provider — GitHub tools (repos, issues, PRs, releases)"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { text = "MIT" }
|
|
@@ -17,7 +17,7 @@ classifiers = [
|
|
|
17
17
|
"Programming Language :: Python :: 3.11",
|
|
18
18
|
]
|
|
19
19
|
dependencies = [
|
|
20
|
-
"matimo-core>=0.1.
|
|
20
|
+
"matimo-core>=0.1.0,<0.2.0",
|
|
21
21
|
]
|
|
22
22
|
|
|
23
23
|
[project.entry-points."matimo.providers"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|