sumd 0.3.52__tar.gz → 0.3.53__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.
- {sumd-0.3.52 → sumd-0.3.53}/CHANGELOG.md +12 -0
- {sumd-0.3.52 → sumd-0.3.53}/PKG-INFO +6 -6
- {sumd-0.3.52 → sumd-0.3.53}/README.md +4 -4
- {sumd-0.3.52 → sumd-0.3.53}/pyproject.toml +4 -2
- {sumd-0.3.52 → sumd-0.3.53}/sumd/__init__.py +1 -1
- {sumd-0.3.52 → sumd-0.3.53}/.gitignore +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/LICENSE +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/__main__.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/cli.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/cli_doql.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/cli_scan.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/cqrs/__init__.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/cqrs/aggregates.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/cqrs/commands.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/cqrs/events.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/cqrs/queries.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/cqrs/sumd_aggregate.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/__init__.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/ast_nodes.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/commands.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/context_mixin.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/engine.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/lexer.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/nlp.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/parser.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/parser_base.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/parser_expr.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/parser_primary.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/schema.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/schema_commands.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/dsl/shell.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/extractor.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/generator.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/mcp_server.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/models.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/parser.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/pipeline.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/prolog_engine.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/renderer.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/rules.pl +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/__init__.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/api_stubs.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/architecture.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/base.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/call_graph.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/code_analysis.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/configuration.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/dependencies.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/deployment.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/environment.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/extras.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/interfaces.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/metadata.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/quality.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/refactor_analysis.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/source_snippets.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/swop.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/test_contracts.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/utils/__init__.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/utils/render.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/utils/should_render.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/sections/workflows.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/toon_parser.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/utils/__init__.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/utils/prolog_core.py +0 -0
- {sumd-0.3.52 → sumd-0.3.53}/sumd/validator.py +0 -0
|
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.3.53] - 2026-05-22
|
|
11
|
+
|
|
12
|
+
### Docs
|
|
13
|
+
- Update README.md
|
|
14
|
+
|
|
15
|
+
### Test
|
|
16
|
+
- Update tests/test_cli.py
|
|
17
|
+
|
|
18
|
+
### Other
|
|
19
|
+
- Update sumd_logic_validator/sumd_logic_validator/__init__.py
|
|
20
|
+
- Update wup.yaml
|
|
21
|
+
|
|
10
22
|
## [0.3.52] - 2026-05-22
|
|
11
23
|
|
|
12
24
|
### Docs
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sumd
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.53
|
|
4
4
|
Summary: SUMD - Structured Unified Markdown Descriptor for AI-aware project documentation
|
|
5
5
|
Project-URL: Homepage, https://github.com/tom/statement
|
|
6
6
|
Project-URL: Repository, https://github.com/tom/statement
|
|
7
7
|
Author-email: Tom Sapletta <tom@sapletta.com>
|
|
8
|
-
License
|
|
8
|
+
License: Apache-2.0
|
|
9
9
|
License-File: LICENSE
|
|
10
10
|
Keywords: documentation,llm,markdown,project-descriptor,sumd
|
|
11
11
|
Classifier: Development Status :: 3 - Alpha
|
|
@@ -42,11 +42,11 @@ Description-Content-Type: text/markdown
|
|
|
42
42
|
|
|
43
43
|
## AI Cost Tracking
|
|
44
44
|
|
|
45
|
-
    
|
|
46
|
+
  
|
|
47
47
|
|
|
48
|
-
- 🤖 **LLM usage:** $
|
|
49
|
-
- 👤 **Human dev:** ~$
|
|
48
|
+
- 🤖 **LLM usage:** $7.5000 (92 commits)
|
|
49
|
+
- 👤 **Human dev:** ~$3684 (36.8h @ $100/h, 30min dedup)
|
|
50
50
|
|
|
51
51
|
Generated on 2026-05-22 using [openrouter/qwen/qwen3-coder-next](https://openrouter.ai/qwen/qwen3-coder-next)
|
|
52
52
|
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## AI Cost Tracking
|
|
4
4
|
|
|
5
|
-
    
|
|
6
|
+
  
|
|
7
7
|
|
|
8
|
-
- 🤖 **LLM usage:** $
|
|
9
|
-
- 👤 **Human dev:** ~$
|
|
8
|
+
- 🤖 **LLM usage:** $7.5000 (92 commits)
|
|
9
|
+
- 👤 **Human dev:** ~$3684 (36.8h @ $100/h, 30min dedup)
|
|
10
10
|
|
|
11
11
|
Generated on 2026-05-22 using [openrouter/qwen/qwen3-coder-next](https://openrouter.ai/qwen/qwen3-coder-next)
|
|
12
12
|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "sumd"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.53"
|
|
8
8
|
description = "SUMD - Structured Unified Markdown Descriptor for AI-aware project documentation"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -29,7 +29,9 @@ classifiers = [
|
|
|
29
29
|
"Programming Language :: Python :: 3.11",
|
|
30
30
|
"Programming Language :: Python :: 3.12",
|
|
31
31
|
]
|
|
32
|
-
|
|
32
|
+
|
|
33
|
+
[project.license]
|
|
34
|
+
text = "Apache-2.0"
|
|
33
35
|
|
|
34
36
|
[project.optional-dependencies]
|
|
35
37
|
mcp = [
|
|
@@ -4,7 +4,7 @@ SUMD is a semantic project descriptor format in Markdown that defines intent,
|
|
|
4
4
|
structure, execution entry points, and mental model of a system for both humans and LLMs.
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
__version__ = "0.3.
|
|
7
|
+
__version__ = "0.3.53"
|
|
8
8
|
|
|
9
9
|
from sumd.models import SUMDDocument
|
|
10
10
|
from sumd.parser import (
|
|
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
|
|
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
|
|
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
|