devmind-cli 0.1.1__py3-none-any.whl → 0.1.2__py3-none-any.whl

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.
@@ -80,6 +80,12 @@ def scan_codebase_files(root_dir: str) -> list[dict]:
80
80
  with open(file_path, "r", encoding="utf-8", errors="ignore") as f:
81
81
  content = f.read()
82
82
 
83
+ # Skip empty or trivial files (e.g. empty __init__.py files)
84
+ # to prevent LLM structured output validation failures in Cognee
85
+ stripped_content = content.strip()
86
+ if not stripped_content or len(stripped_content) < 15:
87
+ continue
88
+
83
89
  codebase_files.append({
84
90
  "relative_path": str(relative_path),
85
91
  "absolute_path": str(file_path),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: devmind-cli
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: DevMind - Semantic Codebase Memory and Agentic Search for Developers
5
5
  Author: Anishp-cell
6
6
  Project-URL: Homepage, https://github.com/Anishp-cell/devmind-CLI
@@ -2,12 +2,12 @@ devmind/__init__.py,sha256=y9-PZTQC2r3AMAK95S8mBrriUKQ8oXl-NpckGK3grDc,64
2
2
  devmind/cli.py,sha256=IOmWf42d42rfo0zKVJs02P41mkxt4VYzJP_gN3ppY14,10240
3
3
  devmind/memory.py,sha256=4x_RibMzlSjpgDntuhmsnOQ2kum5GroOWpZIvm4d0h0,11205
4
4
  devmind/ingestion/comment_extractor.py,sha256=Q-tMymQ3xPhq8D6tOGyo_jXqxhVkLqOD6blwsLX41Go,3928
5
- devmind/ingestion/file_reader.py,sha256=9Wetq20moPt5rxGedkxE7zsJajar04pacYOy3glCh3Q,2683
5
+ devmind/ingestion/file_reader.py,sha256=yAUMbX3rHXhxyDj6Fq20hm7qm5jEU3zpubo_pNKAafk,3033
6
6
  devmind/ingestion/git_parser.py,sha256=xA0zZeQGTUiCc7S4U1NbF3V7yQOZDgWPqyuhnPSxh3Y,2993
7
7
  devmind/integrations/claude_code.py,sha256=w2RKVjz57lyaiu2vhRf1SkcyFlFfJx0WhWTY1V82RNk,1470
8
8
  devmind/web/app.py,sha256=btsHTfU4YgZTf1oLc7LH7mAlaEbcxHyPJOQR1U_ugdU,3049
9
- devmind_cli-0.1.1.dist-info/METADATA,sha256=_mZ8FQzkZXPa_bHIJo2MFjYKB6a5HUnCyGbDNkMETK0,5479
10
- devmind_cli-0.1.1.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
11
- devmind_cli-0.1.1.dist-info/entry_points.txt,sha256=hVEkT2A4Eon0gRaBlw4KO_gpi6UHq5-qJ99aUO3hRfI,44
12
- devmind_cli-0.1.1.dist-info/top_level.txt,sha256=_DEg02cn_PSb0audseGNYo2Krcitio-Vuo_7duiIXGA,8
13
- devmind_cli-0.1.1.dist-info/RECORD,,
9
+ devmind_cli-0.1.2.dist-info/METADATA,sha256=loK5l5_X7WsddGZDT1rT8siQ_GD7up074rY6fxQKCyQ,5479
10
+ devmind_cli-0.1.2.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
11
+ devmind_cli-0.1.2.dist-info/entry_points.txt,sha256=hVEkT2A4Eon0gRaBlw4KO_gpi6UHq5-qJ99aUO3hRfI,44
12
+ devmind_cli-0.1.2.dist-info/top_level.txt,sha256=_DEg02cn_PSb0audseGNYo2Krcitio-Vuo_7duiIXGA,8
13
+ devmind_cli-0.1.2.dist-info/RECORD,,