coderec 0.0.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.
- coderec-0.0.1/PKG-INFO +49 -0
- coderec-0.0.1/README.md +26 -0
- coderec-0.0.1/coderec/__init__.py +38 -0
- coderec-0.0.1/coderec.egg-info/PKG-INFO +49 -0
- coderec-0.0.1/coderec.egg-info/SOURCES.txt +8 -0
- coderec-0.0.1/coderec.egg-info/dependency_links.txt +1 -0
- coderec-0.0.1/coderec.egg-info/entry_points.txt +2 -0
- coderec-0.0.1/coderec.egg-info/top_level.txt +1 -0
- coderec-0.0.1/pyproject.toml +46 -0
- coderec-0.0.1/setup.cfg +4 -0
coderec-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: coderec
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Codebase reconnaissance for spec-driven development. Transforms brownfield codebases into AI-ready intelligence documents.
|
|
5
|
+
Author-email: Francesco Marinoni Moretto <francesco.marinoni.moretto@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/frmoretto/coderec
|
|
8
|
+
Project-URL: Repository, https://github.com/frmoretto/coderec
|
|
9
|
+
Project-URL: Issues, https://github.com/frmoretto/coderec/issues
|
|
10
|
+
Keywords: spec-driven-development,sdd,brownfield,codebase-analysis,code-intelligence,context-engineering,documentation-first,ai-coding,stream-coding,specverify
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Topic :: Software Development :: Documentation
|
|
20
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
21
|
+
Requires-Python: >=3.9
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
|
|
24
|
+
# coderec
|
|
25
|
+
|
|
26
|
+
**Codebase reconnaissance for spec-driven development.**
|
|
27
|
+
|
|
28
|
+
The brownfield on-ramp for any SDD methodology.
|
|
29
|
+
|
|
30
|
+
## The Problem
|
|
31
|
+
|
|
32
|
+
Every SDD tool assumes you start with a blank page. Most developers don't.
|
|
33
|
+
|
|
34
|
+
## The Solution
|
|
35
|
+
|
|
36
|
+
coderec transforms existing codebases into **Codebase Intelligence Documents (CIDs)** - verified, structured artifacts that any SDD methodology can consume as input.
|
|
37
|
+
|
|
38
|
+
## Status
|
|
39
|
+
|
|
40
|
+
Coming soon. Full release planned for Q2 2026.
|
|
41
|
+
|
|
42
|
+
## Links
|
|
43
|
+
|
|
44
|
+
- [specverify](https://github.com/frmoretto/specverify) - Verify your specs before execution
|
|
45
|
+
- [Stream Coding](https://stream-coding.com) - Documentation-first development methodology
|
|
46
|
+
|
|
47
|
+
## License
|
|
48
|
+
|
|
49
|
+
MIT
|
coderec-0.0.1/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# coderec
|
|
2
|
+
|
|
3
|
+
**Codebase reconnaissance for spec-driven development.**
|
|
4
|
+
|
|
5
|
+
The brownfield on-ramp for any SDD methodology.
|
|
6
|
+
|
|
7
|
+
## The Problem
|
|
8
|
+
|
|
9
|
+
Every SDD tool assumes you start with a blank page. Most developers don't.
|
|
10
|
+
|
|
11
|
+
## The Solution
|
|
12
|
+
|
|
13
|
+
coderec transforms existing codebases into **Codebase Intelligence Documents (CIDs)** - verified, structured artifacts that any SDD methodology can consume as input.
|
|
14
|
+
|
|
15
|
+
## Status
|
|
16
|
+
|
|
17
|
+
Coming soon. Full release planned for Q2 2026.
|
|
18
|
+
|
|
19
|
+
## Links
|
|
20
|
+
|
|
21
|
+
- [specverify](https://github.com/frmoretto/specverify) - Verify your specs before execution
|
|
22
|
+
- [Stream Coding](https://stream-coding.com) - Documentation-first development methodology
|
|
23
|
+
|
|
24
|
+
## License
|
|
25
|
+
|
|
26
|
+
MIT
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"""
|
|
2
|
+
coderec — Codebase reconnaissance for spec-driven development.
|
|
3
|
+
|
|
4
|
+
Transforms brownfield codebases into AI-ready Codebase Intelligence Documents
|
|
5
|
+
through progressive disclosure: Cartography → Module Intelligence →
|
|
6
|
+
Cross-Module Synthesis → Decision Archaeology.
|
|
7
|
+
|
|
8
|
+
The brownfield on-ramp for any SDD methodology.
|
|
9
|
+
|
|
10
|
+
Install: pip install coderec
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
__version__ = "0.0.1"
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
def main():
|
|
17
|
+
print("""
|
|
18
|
+
coderec v0.0.1
|
|
19
|
+
|
|
20
|
+
Codebase reconnaissance for spec-driven development.
|
|
21
|
+
|
|
22
|
+
Status: Coming soon. Full release planned for Q2 2026.
|
|
23
|
+
|
|
24
|
+
What this will do:
|
|
25
|
+
- Layer 1: Cartography — map system boundaries and dependencies
|
|
26
|
+
- Layer 2: Module Intelligence — per-module intelligence cards
|
|
27
|
+
- Layer 3: Cross-Module Synthesis — find contradictions and dead paths
|
|
28
|
+
- Layer 4: Decision Archaeology — recover the "why" from git history
|
|
29
|
+
- Output: Codebase Intelligence Document (CID) — verified, spec-ready
|
|
30
|
+
|
|
31
|
+
Ecosystem:
|
|
32
|
+
- coderec -> understand your codebase -> CID
|
|
33
|
+
- specverify -> verify your specs -> report
|
|
34
|
+
- stream-coding -> write your specs -> code
|
|
35
|
+
|
|
36
|
+
GitHub: https://github.com/frmoretto/coderec
|
|
37
|
+
Author: https://linkedin.com/in/francesco-moretto
|
|
38
|
+
""")
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: coderec
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Codebase reconnaissance for spec-driven development. Transforms brownfield codebases into AI-ready intelligence documents.
|
|
5
|
+
Author-email: Francesco Marinoni Moretto <francesco.marinoni.moretto@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/frmoretto/coderec
|
|
8
|
+
Project-URL: Repository, https://github.com/frmoretto/coderec
|
|
9
|
+
Project-URL: Issues, https://github.com/frmoretto/coderec/issues
|
|
10
|
+
Keywords: spec-driven-development,sdd,brownfield,codebase-analysis,code-intelligence,context-engineering,documentation-first,ai-coding,stream-coding,specverify
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Topic :: Software Development :: Documentation
|
|
20
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
21
|
+
Requires-Python: >=3.9
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
|
|
24
|
+
# coderec
|
|
25
|
+
|
|
26
|
+
**Codebase reconnaissance for spec-driven development.**
|
|
27
|
+
|
|
28
|
+
The brownfield on-ramp for any SDD methodology.
|
|
29
|
+
|
|
30
|
+
## The Problem
|
|
31
|
+
|
|
32
|
+
Every SDD tool assumes you start with a blank page. Most developers don't.
|
|
33
|
+
|
|
34
|
+
## The Solution
|
|
35
|
+
|
|
36
|
+
coderec transforms existing codebases into **Codebase Intelligence Documents (CIDs)** - verified, structured artifacts that any SDD methodology can consume as input.
|
|
37
|
+
|
|
38
|
+
## Status
|
|
39
|
+
|
|
40
|
+
Coming soon. Full release planned for Q2 2026.
|
|
41
|
+
|
|
42
|
+
## Links
|
|
43
|
+
|
|
44
|
+
- [specverify](https://github.com/frmoretto/specverify) - Verify your specs before execution
|
|
45
|
+
- [Stream Coding](https://stream-coding.com) - Documentation-first development methodology
|
|
46
|
+
|
|
47
|
+
## License
|
|
48
|
+
|
|
49
|
+
MIT
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
coderec
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "coderec"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Codebase reconnaissance for spec-driven development. Transforms brownfield codebases into AI-ready intelligence documents."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
authors = [
|
|
12
|
+
{name = "Francesco Marinoni Moretto", email = "francesco.marinoni.moretto@gmail.com"}
|
|
13
|
+
]
|
|
14
|
+
requires-python = ">=3.9"
|
|
15
|
+
keywords = [
|
|
16
|
+
"spec-driven-development",
|
|
17
|
+
"sdd",
|
|
18
|
+
"brownfield",
|
|
19
|
+
"codebase-analysis",
|
|
20
|
+
"code-intelligence",
|
|
21
|
+
"context-engineering",
|
|
22
|
+
"documentation-first",
|
|
23
|
+
"ai-coding",
|
|
24
|
+
"stream-coding",
|
|
25
|
+
"specverify"
|
|
26
|
+
]
|
|
27
|
+
classifiers = [
|
|
28
|
+
"Development Status :: 1 - Planning",
|
|
29
|
+
"Intended Audience :: Developers",
|
|
30
|
+
"License :: OSI Approved :: MIT License",
|
|
31
|
+
"Programming Language :: Python :: 3",
|
|
32
|
+
"Programming Language :: Python :: 3.9",
|
|
33
|
+
"Programming Language :: Python :: 3.10",
|
|
34
|
+
"Programming Language :: Python :: 3.11",
|
|
35
|
+
"Programming Language :: Python :: 3.12",
|
|
36
|
+
"Topic :: Software Development :: Documentation",
|
|
37
|
+
"Topic :: Software Development :: Quality Assurance",
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
[project.urls]
|
|
41
|
+
Homepage = "https://github.com/frmoretto/coderec"
|
|
42
|
+
Repository = "https://github.com/frmoretto/coderec"
|
|
43
|
+
Issues = "https://github.com/frmoretto/coderec/issues"
|
|
44
|
+
|
|
45
|
+
[project.scripts]
|
|
46
|
+
coderec = "coderec:main"
|
coderec-0.0.1/setup.cfg
ADDED