devtime-ei 0.1.2__tar.gz → 0.1.2.post1__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 (76) hide show
  1. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/PKG-INFO +3 -3
  2. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/README.md +2 -2
  3. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/pyproject.toml +1 -1
  4. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/__init__.py +1 -1
  5. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime_ei.egg-info/PKG-INFO +3 -3
  6. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/LICENSE +0 -0
  7. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/setup.cfg +0 -0
  8. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/ai/__init__.py +0 -0
  9. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/ai/local.py +0 -0
  10. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/ai/prompts.py +0 -0
  11. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/ai/providers.py +0 -0
  12. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/assets/devtimeignore.starter +0 -0
  13. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/cli.py +0 -0
  14. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/config.py +0 -0
  15. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/db/__init__.py +0 -0
  16. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/db/connection.py +0 -0
  17. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/db/migrations.py +0 -0
  18. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/db/repository.py +0 -0
  19. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/db/schema.sql +0 -0
  20. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/demo.py +0 -0
  21. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/fixtures/__init__.py +0 -0
  22. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/fixtures/assertions.py +0 -0
  23. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/fixtures/loader.py +0 -0
  24. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/fixtures/runner.py +0 -0
  25. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/intelligence/__init__.py +0 -0
  26. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/intelligence/claims.py +0 -0
  27. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/intelligence/concepts.py +0 -0
  28. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/intelligence/context_pack.py +0 -0
  29. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/intelligence/evidence.py +0 -0
  30. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/intelligence/lineage.py +0 -0
  31. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/intelligence/risk.py +0 -0
  32. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/intelligence/scoring.py +0 -0
  33. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/mcp/__init__.py +0 -0
  34. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/mcp/schemas.py +0 -0
  35. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/mcp/server.py +0 -0
  36. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/mcp/tools.py +0 -0
  37. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/mcp/transport.py +0 -0
  38. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/output/__init__.py +0 -0
  39. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/output/json_export.py +0 -0
  40. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/output/markdown.py +0 -0
  41. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/output/terminal.py +0 -0
  42. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/paths.py +0 -0
  43. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/privacy.py +0 -0
  44. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/resources/demo-saas/.devtimeignore +0 -0
  45. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/resources/demo-saas/README.md +0 -0
  46. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/resources/demo-saas/docs/decisions/0001-use-jwt.md +0 -0
  47. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/resources/demo-saas/package.json +0 -0
  48. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/resources/demo-saas/src/admin/permissions.ts +0 -0
  49. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/resources/demo-saas/src/auth/login.ts +0 -0
  50. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/resources/demo-saas/src/auth/middleware.ts +0 -0
  51. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/resources/demo-saas/src/auth/tokens.ts +0 -0
  52. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/resources/demo-saas/src/billing/stripe-webhook.ts +0 -0
  53. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/resources/demo-saas/src/billing/subscription-service.ts +0 -0
  54. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/resources/demo-saas/src/export/export-csv.ts +0 -0
  55. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/resources/demo-saas/src/jobs/email-worker.ts +0 -0
  56. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/resources/demo-saas/src/jobs/queues.ts +0 -0
  57. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/resources/demo-saas/tests/auth-login.test.ts +0 -0
  58. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/resources/demo-saas/tests/stripe-signature.test.ts +0 -0
  59. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/scanner/__init__.py +0 -0
  60. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/scanner/extractors/__init__.py +0 -0
  61. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/scanner/extractors/base.py +0 -0
  62. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/scanner/extractors/config_files.py +0 -0
  63. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/scanner/extractors/docs.py +0 -0
  64. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/scanner/extractors/nextjs.py +0 -0
  65. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/scanner/extractors/python.py +0 -0
  66. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/scanner/extractors/tests.py +0 -0
  67. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/scanner/extractors/typescript.py +0 -0
  68. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/scanner/file_walker.py +0 -0
  69. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/scanner/ignore.py +0 -0
  70. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/scanner/language.py +0 -0
  71. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime/scanner/signals.py +0 -0
  72. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime_ei.egg-info/SOURCES.txt +0 -0
  73. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime_ei.egg-info/dependency_links.txt +0 -0
  74. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime_ei.egg-info/entry_points.txt +0 -0
  75. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime_ei.egg-info/requires.txt +0 -0
  76. {devtime_ei-0.1.2 → devtime_ei-0.1.2.post1}/src/devtime_ei.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: devtime-ei
3
- Version: 0.1.2
3
+ Version: 0.1.2.post1
4
4
  Summary: Local-first Engineering Intelligence for software repositories
5
5
  Author-email: Aviad Shakargi <aviad94@gmail.com>
6
6
  Maintainer-email: Aviad Shakargi <aviad94@gmail.com>
@@ -251,9 +251,9 @@ The agent gets three read-only tools: `list_concepts`, `explain_concept`, and
251
251
  to run, and agent guidance). Local stdio only - no network listener, no write tools,
252
252
  no source code returned, only evidence file paths.
253
253
 
254
- DevTime is listed in the official MCP Registry as `io.github.shakargy/devtime`.
254
+ DevTime is listed in the official MCP Registry as `io.github.Shakargy/devtime`.
255
255
 
256
- <!-- mcp-name: io.github.shakargy/devtime -->
256
+ <!-- mcp-name: io.github.Shakargy/devtime -->
257
257
 
258
258
  ## Installation
259
259
 
@@ -212,9 +212,9 @@ The agent gets three read-only tools: `list_concepts`, `explain_concept`, and
212
212
  to run, and agent guidance). Local stdio only - no network listener, no write tools,
213
213
  no source code returned, only evidence file paths.
214
214
 
215
- DevTime is listed in the official MCP Registry as `io.github.shakargy/devtime`.
215
+ DevTime is listed in the official MCP Registry as `io.github.Shakargy/devtime`.
216
216
 
217
- <!-- mcp-name: io.github.shakargy/devtime -->
217
+ <!-- mcp-name: io.github.Shakargy/devtime -->
218
218
 
219
219
  ## Installation
220
220
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "devtime-ei"
3
- version = "0.1.2"
3
+ version = "0.1.2.post1"
4
4
  description = "Local-first Engineering Intelligence for software repositories"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -1,6 +1,6 @@
1
1
  """DevTime - local-first Engineering Intelligence for repository memory."""
2
2
 
3
- __version__ = "0.1.2"
3
+ __version__ = "0.1.2.post1"
4
4
 
5
5
  # Version metadata (Builder Edition, Chapter 20).
6
6
  EVIDENCE_MODEL = "2026.06.1"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: devtime-ei
3
- Version: 0.1.2
3
+ Version: 0.1.2.post1
4
4
  Summary: Local-first Engineering Intelligence for software repositories
5
5
  Author-email: Aviad Shakargi <aviad94@gmail.com>
6
6
  Maintainer-email: Aviad Shakargi <aviad94@gmail.com>
@@ -251,9 +251,9 @@ The agent gets three read-only tools: `list_concepts`, `explain_concept`, and
251
251
  to run, and agent guidance). Local stdio only - no network listener, no write tools,
252
252
  no source code returned, only evidence file paths.
253
253
 
254
- DevTime is listed in the official MCP Registry as `io.github.shakargy/devtime`.
254
+ DevTime is listed in the official MCP Registry as `io.github.Shakargy/devtime`.
255
255
 
256
- <!-- mcp-name: io.github.shakargy/devtime -->
256
+ <!-- mcp-name: io.github.Shakargy/devtime -->
257
257
 
258
258
  ## Installation
259
259
 
File without changes
File without changes