matimo-github 0.1.0__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.
Files changed (27) hide show
  1. {matimo_github-0.1.0 → matimo_github-0.1.2}/.gitignore +7 -0
  2. {matimo_github-0.1.0 → matimo_github-0.1.2}/PKG-INFO +1 -1
  3. {matimo_github-0.1.0 → matimo_github-0.1.2}/pyproject.toml +1 -1
  4. {matimo_github-0.1.0 → matimo_github-0.1.2}/README.md +0 -0
  5. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/__init__.py +0 -0
  6. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/add-collaborator/definition.yaml +0 -0
  7. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/create-issue/definition.yaml +0 -0
  8. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/create-pull-request/definition.yaml +0 -0
  9. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/create-release/definition.yaml +0 -0
  10. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/create-repository/definition.yaml +0 -0
  11. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/delete-repository/definition.yaml +0 -0
  12. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/get-issue/definition.yaml +0 -0
  13. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/get-repository/definition.yaml +0 -0
  14. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/list-code-alerts/definition.yaml +0 -0
  15. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/list-collaborators/definition.yaml +0 -0
  16. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/list-commits/definition.yaml +0 -0
  17. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/list-issues/definition.yaml +0 -0
  18. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/list-pull-requests/definition.yaml +0 -0
  19. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/list-releases/definition.yaml +0 -0
  20. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/list-repositories/definition.yaml +0 -0
  21. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/merge-pull-request/definition.yaml +0 -0
  22. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/search-code/definition.yaml +0 -0
  23. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/search-issues/definition.yaml +0 -0
  24. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/search-repositories/definition.yaml +0 -0
  25. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/search-users/definition.yaml +0 -0
  26. {matimo_github-0.1.0 → matimo_github-0.1.2}/src/matimo_github/tools/update-code-alert/definition.yaml +0 -0
  27. {matimo_github-0.1.0 → 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.0
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
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "matimo-github"
7
- version = "0.1.0"
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" }
File without changes