matimo-github 0.1.0a14.post1__tar.gz → 0.1.3__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.3}/.gitignore +7 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/PKG-INFO +29 -29
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/README.md +26 -26
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/pyproject.toml +2 -2
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/__init__.py +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/add-collaborator/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/create-issue/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/create-pull-request/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/create-release/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/create-repository/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/delete-repository/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/get-issue/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/get-repository/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/list-code-alerts/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/list-collaborators/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/list-commits/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/list-issues/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/list-pull-requests/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/list-releases/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/list-repositories/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/merge-pull-request/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/search-code/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/search-issues/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/search-repositories/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/search-users/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/src/matimo_github/tools/update-code-alert/definition.yaml +0 -0
- {matimo_github-0.1.0a14.post1 → matimo_github-0.1.3}/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
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
2
|
Name: matimo-github
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: Matimo provider — GitHub tools (repos, issues, PRs, releases)
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: agents,ai,github,matimo,tools
|
|
@@ -9,12 +9,12 @@ 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
|
|
16
16
|
|
|
17
|
-
> GitHub tools for [Matimo](https://matimo.dev)
|
|
17
|
+
> GitHub tools for [Matimo](https://matimo.dev) - manage repositories, issues, pull requests, releases, and more.
|
|
18
18
|
|
|
19
19
|
[](https://pypi.org/project/matimo-github/)
|
|
20
20
|
[](https://matimo.dev/docs)
|
|
@@ -29,32 +29,32 @@ pip install matimo matimo-github
|
|
|
29
29
|
|
|
30
30
|
---
|
|
31
31
|
|
|
32
|
-
## Available Tools (
|
|
32
|
+
## Available Tools (22 Total)
|
|
33
33
|
|
|
34
34
|
| Category | Tool | Description |
|
|
35
35
|
|----------|------|-------------|
|
|
36
|
-
| **Repositories** | `get-repository` | Get repository details |
|
|
37
|
-
| | `list-repositories` | List repositories for user/org |
|
|
38
|
-
| | `create-repository` | Create a new repository |
|
|
39
|
-
| | `delete-repository` | Delete a repository |
|
|
40
|
-
| | `search-repositories` | Search GitHub repositories |
|
|
41
|
-
| **Issues** | `list-issues` | List issues in a repository |
|
|
42
|
-
| | `get-issue` | Get a single issue |
|
|
43
|
-
| | `create-issue` | Create a new issue |
|
|
44
|
-
| | `update-issue` | Update issue title, body, state, labels |
|
|
45
|
-
| | `search-issues` | Search issues across GitHub |
|
|
46
|
-
| **Pull Requests** | `list-pull-requests` | List PRs in a repository |
|
|
47
|
-
| | `create-pull-request` | Open a new pull request |
|
|
48
|
-
| | `merge-pull-request` | Merge a pull request |
|
|
49
|
-
| **Releases** | `list-releases` | List releases for a repository |
|
|
50
|
-
| | `create-release` | Create a new release with tag |
|
|
51
|
-
| **Commits** | `list-commits` | List commits on a branch |
|
|
52
|
-
| **Collaborators** | `list-collaborators` | List repository collaborators |
|
|
53
|
-
| | `add-collaborator` | Add a collaborator |
|
|
54
|
-
| **Code Search** | `search-code` | Search code across repositories |
|
|
55
|
-
| | `search-users` | Search GitHub users |
|
|
56
|
-
| **Security** | `list-code-alerts` | List Dependabot/code scanning alerts |
|
|
57
|
-
| | `update-code-alert` | Dismiss or resolve a code alert |
|
|
36
|
+
| **Repositories** | `github-get-repository` | Get repository details |
|
|
37
|
+
| | `github-list-repositories` | List repositories for user/org |
|
|
38
|
+
| | `github-create-repository` | Create a new repository |
|
|
39
|
+
| | `github-delete-repository` | Delete a repository |
|
|
40
|
+
| | `github-search-repositories` | Search GitHub repositories |
|
|
41
|
+
| **Issues** | `github-list-issues` | List issues in a repository |
|
|
42
|
+
| | `github-get-issue` | Get a single issue |
|
|
43
|
+
| | `github-create-issue` | Create a new issue |
|
|
44
|
+
| | `github-update-issue` | Update issue title, body, state, labels |
|
|
45
|
+
| | `github-search-issues` | Search issues across GitHub |
|
|
46
|
+
| **Pull Requests** | `github-list-pull-requests` | List PRs in a repository |
|
|
47
|
+
| | `github-create-pull-request` | Open a new pull request |
|
|
48
|
+
| | `github-merge-pull-request` | Merge a pull request |
|
|
49
|
+
| **Releases** | `github-list-releases` | List releases for a repository |
|
|
50
|
+
| | `github-create-release` | Create a new release with tag |
|
|
51
|
+
| **Commits** | `github-list-commits` | List commits on a branch |
|
|
52
|
+
| **Collaborators** | `github-list-collaborators` | List repository collaborators |
|
|
53
|
+
| | `github-add-collaborator` | Add a collaborator |
|
|
54
|
+
| **Code Search** | `github-search-code` | Search code across repositories |
|
|
55
|
+
| | `github-search-users` | Search GitHub users |
|
|
56
|
+
| **Security** | `github-list-code-alerts` | List Dependabot/code scanning alerts |
|
|
57
|
+
| | `github-update-code-alert` | Dismiss or resolve a code alert |
|
|
58
58
|
|
|
59
59
|
---
|
|
60
60
|
|
|
@@ -70,14 +70,14 @@ async def main():
|
|
|
70
70
|
matimo = await Matimo.init(get_tools_path())
|
|
71
71
|
|
|
72
72
|
# List open issues
|
|
73
|
-
result = await matimo.execute('list-issues', {
|
|
73
|
+
result = await matimo.execute('github-list-issues', {
|
|
74
74
|
'owner': 'my-org',
|
|
75
75
|
'repo': 'my-repo',
|
|
76
76
|
'state': 'open',
|
|
77
77
|
})
|
|
78
78
|
|
|
79
79
|
# Create an issue
|
|
80
|
-
await matimo.execute('create-issue', {
|
|
80
|
+
await matimo.execute('github-create-issue', {
|
|
81
81
|
'owner': 'my-org',
|
|
82
82
|
'repo': 'my-repo',
|
|
83
83
|
'title': 'Bug: login fails on mobile',
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# matimo-github
|
|
2
2
|
|
|
3
|
-
> GitHub tools for [Matimo](https://matimo.dev)
|
|
3
|
+
> GitHub tools for [Matimo](https://matimo.dev) - manage repositories, issues, pull requests, releases, and more.
|
|
4
4
|
|
|
5
5
|
[](https://pypi.org/project/matimo-github/)
|
|
6
6
|
[](https://matimo.dev/docs)
|
|
@@ -15,32 +15,32 @@ pip install matimo matimo-github
|
|
|
15
15
|
|
|
16
16
|
---
|
|
17
17
|
|
|
18
|
-
## Available Tools (
|
|
18
|
+
## Available Tools (22 Total)
|
|
19
19
|
|
|
20
20
|
| Category | Tool | Description |
|
|
21
21
|
|----------|------|-------------|
|
|
22
|
-
| **Repositories** | `get-repository` | Get repository details |
|
|
23
|
-
| | `list-repositories` | List repositories for user/org |
|
|
24
|
-
| | `create-repository` | Create a new repository |
|
|
25
|
-
| | `delete-repository` | Delete a repository |
|
|
26
|
-
| | `search-repositories` | Search GitHub repositories |
|
|
27
|
-
| **Issues** | `list-issues` | List issues in a repository |
|
|
28
|
-
| | `get-issue` | Get a single issue |
|
|
29
|
-
| | `create-issue` | Create a new issue |
|
|
30
|
-
| | `update-issue` | Update issue title, body, state, labels |
|
|
31
|
-
| | `search-issues` | Search issues across GitHub |
|
|
32
|
-
| **Pull Requests** | `list-pull-requests` | List PRs in a repository |
|
|
33
|
-
| | `create-pull-request` | Open a new pull request |
|
|
34
|
-
| | `merge-pull-request` | Merge a pull request |
|
|
35
|
-
| **Releases** | `list-releases` | List releases for a repository |
|
|
36
|
-
| | `create-release` | Create a new release with tag |
|
|
37
|
-
| **Commits** | `list-commits` | List commits on a branch |
|
|
38
|
-
| **Collaborators** | `list-collaborators` | List repository collaborators |
|
|
39
|
-
| | `add-collaborator` | Add a collaborator |
|
|
40
|
-
| **Code Search** | `search-code` | Search code across repositories |
|
|
41
|
-
| | `search-users` | Search GitHub users |
|
|
42
|
-
| **Security** | `list-code-alerts` | List Dependabot/code scanning alerts |
|
|
43
|
-
| | `update-code-alert` | Dismiss or resolve a code alert |
|
|
22
|
+
| **Repositories** | `github-get-repository` | Get repository details |
|
|
23
|
+
| | `github-list-repositories` | List repositories for user/org |
|
|
24
|
+
| | `github-create-repository` | Create a new repository |
|
|
25
|
+
| | `github-delete-repository` | Delete a repository |
|
|
26
|
+
| | `github-search-repositories` | Search GitHub repositories |
|
|
27
|
+
| **Issues** | `github-list-issues` | List issues in a repository |
|
|
28
|
+
| | `github-get-issue` | Get a single issue |
|
|
29
|
+
| | `github-create-issue` | Create a new issue |
|
|
30
|
+
| | `github-update-issue` | Update issue title, body, state, labels |
|
|
31
|
+
| | `github-search-issues` | Search issues across GitHub |
|
|
32
|
+
| **Pull Requests** | `github-list-pull-requests` | List PRs in a repository |
|
|
33
|
+
| | `github-create-pull-request` | Open a new pull request |
|
|
34
|
+
| | `github-merge-pull-request` | Merge a pull request |
|
|
35
|
+
| **Releases** | `github-list-releases` | List releases for a repository |
|
|
36
|
+
| | `github-create-release` | Create a new release with tag |
|
|
37
|
+
| **Commits** | `github-list-commits` | List commits on a branch |
|
|
38
|
+
| **Collaborators** | `github-list-collaborators` | List repository collaborators |
|
|
39
|
+
| | `github-add-collaborator` | Add a collaborator |
|
|
40
|
+
| **Code Search** | `github-search-code` | Search code across repositories |
|
|
41
|
+
| | `github-search-users` | Search GitHub users |
|
|
42
|
+
| **Security** | `github-list-code-alerts` | List Dependabot/code scanning alerts |
|
|
43
|
+
| | `github-update-code-alert` | Dismiss or resolve a code alert |
|
|
44
44
|
|
|
45
45
|
---
|
|
46
46
|
|
|
@@ -56,14 +56,14 @@ async def main():
|
|
|
56
56
|
matimo = await Matimo.init(get_tools_path())
|
|
57
57
|
|
|
58
58
|
# List open issues
|
|
59
|
-
result = await matimo.execute('list-issues', {
|
|
59
|
+
result = await matimo.execute('github-list-issues', {
|
|
60
60
|
'owner': 'my-org',
|
|
61
61
|
'repo': 'my-repo',
|
|
62
62
|
'state': 'open',
|
|
63
63
|
})
|
|
64
64
|
|
|
65
65
|
# Create an issue
|
|
66
|
-
await matimo.execute('create-issue', {
|
|
66
|
+
await matimo.execute('github-create-issue', {
|
|
67
67
|
'owner': 'my-org',
|
|
68
68
|
'repo': 'my-repo',
|
|
69
69
|
'title': 'Bug: login fails on mobile',
|
|
@@ -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.3"
|
|
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
|