knowcode 0.1.0__tar.gz → 0.1.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.
Files changed (75) hide show
  1. {knowcode-0.1.0 → knowcode-0.1.1}/.github/workflows/publish.yml +4 -4
  2. {knowcode-0.1.0 → knowcode-0.1.1}/PKG-INFO +1 -1
  3. {knowcode-0.1.0 → knowcode-0.1.1}/npm/knowcode/package.json +4 -4
  4. {knowcode-0.1.0 → knowcode-0.1.1}/pyproject.toml +1 -1
  5. {knowcode-0.1.0 → knowcode-0.1.1}/.gitignore +0 -0
  6. {knowcode-0.1.0 → knowcode-0.1.1}/.python-version +0 -0
  7. {knowcode-0.1.0 → knowcode-0.1.1}/README.md +0 -0
  8. {knowcode-0.1.0 → knowcode-0.1.1}/npm/knowcode/bin/know.js +0 -0
  9. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/__init__.py +0 -0
  10. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/artifact/__init__.py +0 -0
  11. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/artifact/builder.py +0 -0
  12. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/cli/__init__.py +0 -0
  13. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/cli/animation.py +0 -0
  14. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/cli/app.py +0 -0
  15. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/cli/auth.py +0 -0
  16. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/cli/telemetry.py +0 -0
  17. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/exceptions/__init__.py +0 -0
  18. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/exceptions/errors.py +0 -0
  19. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/repository/__init__.py +0 -0
  20. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/repository/discovery.py +0 -0
  21. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/repository/models.py +0 -0
  22. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/repository/paths.py +0 -0
  23. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/repository/validator.py +0 -0
  24. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/services/__init__.py +0 -0
  25. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/services/ingest_service.py +0 -0
  26. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/services/init_service.py +0 -0
  27. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/services/semantic_sync_service.py +0 -0
  28. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/services/status_service.py +0 -0
  29. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/services/sync_service.py +0 -0
  30. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/templates/KNOWCODE_LOADER.md.j2 +0 -0
  31. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/templates/README_KNOWLEDGE.md.j2 +0 -0
  32. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/templates/README_STRUCTURE.md.j2 +0 -0
  33. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/templates/__init__.py +0 -0
  34. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/templates/active_context.md.j2 +0 -0
  35. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/templates/ingest_legacy.md.j2 +0 -0
  36. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/templates/raw_readme.md.j2 +0 -0
  37. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/templates/sync_reconciliation.md.j2 +0 -0
  38. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/templates/synthesize_knowledge.md.j2 +0 -0
  39. {knowcode-0.1.0 → knowcode-0.1.1}/src/runtime/templates/track_intent.md.j2 +0 -0
  40. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/__init__.py +0 -0
  41. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/diff/__init__.py +0 -0
  42. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/diff/generator.py +0 -0
  43. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/diff/models.py +0 -0
  44. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/engine.py +0 -0
  45. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/logs/__init__.py +0 -0
  46. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/logs/generator.py +0 -0
  47. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/parser/__init__.py +0 -0
  48. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/parser/discovery.py +0 -0
  49. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/parser/extractors/base.py +0 -0
  50. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/parser/languages/javascript/adapter.py +0 -0
  51. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/parser/languages/python/adapter.py +0 -0
  52. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/parser/languages/typescript/adapter.py +0 -0
  53. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/parser/models.py +0 -0
  54. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/parser/parser.py +0 -0
  55. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/parser/resolvers/calls.py +0 -0
  56. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/parser/tree_sitter/registry.py +0 -0
  57. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/reports/__init__.py +0 -0
  58. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/reports/generator.py +0 -0
  59. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/results.py +0 -0
  60. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/revisions/__init__.py +0 -0
  61. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/revisions/tracker.py +0 -0
  62. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/snapshot/__init__.py +0 -0
  63. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/snapshot/generator.py +0 -0
  64. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/snapshot/loader.py +0 -0
  65. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/state/__init__.py +0 -0
  66. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/state/manager.py +0 -0
  67. {knowcode-0.1.0 → knowcode-0.1.1}/src/structural_engine/state/models.py +0 -0
  68. {knowcode-0.1.0 → knowcode-0.1.1}/tests/test_phase1.py +0 -0
  69. {knowcode-0.1.0 → knowcode-0.1.1}/tests/test_phase2a.py +0 -0
  70. {knowcode-0.1.0 → knowcode-0.1.1}/tests/test_phase2b.py +0 -0
  71. {knowcode-0.1.0 → knowcode-0.1.1}/tests/test_phase3.py +0 -0
  72. {knowcode-0.1.0 → knowcode-0.1.1}/tests/test_phase4.py +0 -0
  73. {knowcode-0.1.0 → knowcode-0.1.1}/tests/test_phase5.py +0 -0
  74. {knowcode-0.1.0 → knowcode-0.1.1}/tests/test_phase6.py +0 -0
  75. {knowcode-0.1.0 → knowcode-0.1.1}/uv.lock +0 -0
@@ -31,17 +31,17 @@ jobs:
31
31
  matrix:
32
32
  include:
33
33
  - os: windows-latest
34
- pkg_name: knowcode-win32-x64
34
+ pkg_name: "@knowiki/knowcode-win32-x64"
35
35
  npm_os: win32
36
36
  npm_cpu: x64
37
37
  artifact_name: know.exe
38
38
  - os: macos-latest
39
- pkg_name: knowcode-darwin-arm64
39
+ pkg_name: "@knowiki/knowcode-darwin-arm64"
40
40
  npm_os: darwin
41
41
  npm_cpu: arm64
42
42
  artifact_name: know
43
43
  - os: ubuntu-latest
44
- pkg_name: knowcode-linux-x64
44
+ pkg_name: "@knowiki/knowcode-linux-x64"
45
45
  npm_os: linux
46
46
  npm_cpu: x64
47
47
  artifact_name: know
@@ -71,7 +71,7 @@ jobs:
71
71
  cat <<EOF > npm-binary-pkg/package.json
72
72
  {
73
73
  "name": "${{ matrix.pkg_name }}",
74
- "version": "0.1.0",
74
+ "version": "0.1.1",
75
75
  "description": "Platform specific binary for KnowCode",
76
76
  "os": [
77
77
  "${{ matrix.npm_os }}"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: knowcode
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Structural cognition engine for code repositories
5
5
  Requires-Python: >=3.13
6
6
  Requires-Dist: jinja2>=3.1.0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "knowcode",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "KnowCode : the knowledge layer to your code",
5
5
  "bin": {
6
6
  "know": "bin/know.js"
@@ -16,8 +16,8 @@
16
16
  "author": "KnowCode Team",
17
17
  "license": "MIT",
18
18
  "optionalDependencies": {
19
- "knowcode-win32-x64": "0.1.0",
20
- "knowcode-darwin-arm64": "0.1.0",
21
- "knowcode-linux-x64": "0.1.0"
19
+ "@knowiki/knowcode-win32-x64": "0.1.1",
20
+ "@knowiki/knowcode-darwin-arm64": "0.1.1",
21
+ "@knowiki/knowcode-linux-x64": "0.1.1"
22
22
  }
23
23
  }
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "knowcode"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = "Structural cognition engine for code repositories"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.13"
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