simplicio-mapper 0.7.2__tar.gz → 0.9.0__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.
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/.gitignore +4 -0
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/CHANGELOG.md +105 -0
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/PKG-INFO +4 -1
- simplicio_mapper-0.9.0/README.md +586 -0
- simplicio_mapper-0.9.0/README.pt-BR.md +555 -0
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/READMEs/README.ar-SA.md +7 -1
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/READMEs/README.en.md +7 -1
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/READMEs/README.es-ES.md +7 -1
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/READMEs/README.fr-FR.md +7 -1
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/READMEs/README.he-IL.md +7 -1
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/READMEs/README.hi-IN.md +7 -1
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/READMEs/README.id-ID.md +7 -1
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/READMEs/README.it-IT.md +7 -1
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/READMEs/README.ja-JP.md +7 -1
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/READMEs/README.ko-KR.md +7 -1
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/READMEs/README.ms-MY.md +7 -1
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/READMEs/README.pl-PL.md +7 -1
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/READMEs/README.pt-BR.md +7 -1
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/READMEs/README.ru-RU.md +7 -1
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/READMEs/README.zh-CN.md +7 -1
- simplicio_mapper-0.9.0/SIMPLICIO_INTEGRATION.md +693 -0
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/pyproject.toml +52 -1
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/simplicio_mapper/__init__.py +1 -1
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/simplicio_mapper/_native.py +3 -1
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/simplicio_mapper/cache.py +2 -2
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/simplicio_mapper/cli.py +881 -18
- simplicio_mapper-0.9.0/simplicio_mapper/context_cache.py +80 -0
- simplicio_mapper-0.9.0/simplicio_mapper/context_pack.py +249 -0
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/simplicio_mapper/mapper.py +190 -2
- simplicio_mapper-0.9.0/simplicio_mapper/mechanical_edit.py +169 -0
- simplicio_mapper-0.7.2/README.md +0 -105
- simplicio_mapper-0.7.2/README.pt-BR.md +0 -105
- simplicio_mapper-0.7.2/SIMPLICIO_INTEGRATION.md +0 -248
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/.catalog/README.md +0 -0
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/LICENSE +0 -0
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/PYPI.md +0 -0
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/docs-site/README.md +0 -0
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/rust/README.md +0 -0
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/rust/pyproject.toml +0 -0
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/simplicio_mapper/models.py +0 -0
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/video/README.md +0 -0
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/vscode-extension/LICENSE +0 -0
- {simplicio_mapper-0.7.2 → simplicio_mapper-0.9.0}/vscode-extension/README.md +0 -0
|
@@ -106,6 +106,8 @@ _BOOTSTRAP.md
|
|
|
106
106
|
!.specs/architecture/ADR-*.md
|
|
107
107
|
docs/**
|
|
108
108
|
!docs/YOOL_TUPLE_HAMT.md
|
|
109
|
+
!docs/apply-edits.md
|
|
110
|
+
!docs/apply-edits.example.json
|
|
109
111
|
scripts/**
|
|
110
112
|
!scripts/build_hamt.py
|
|
111
113
|
!scripts/coverage.js
|
|
@@ -119,6 +121,8 @@ tests/**
|
|
|
119
121
|
!tests/e2e/*.spec.ts
|
|
120
122
|
!tests/python/
|
|
121
123
|
!tests/python/*.py
|
|
124
|
+
!tests/fixtures/
|
|
125
|
+
!tests/fixtures/**
|
|
122
126
|
test-results/**
|
|
123
127
|
coverage/**
|
|
124
128
|
bootstrap.ps1
|
|
@@ -1,5 +1,96 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [Unreleased]
|
|
4
|
+
|
|
5
|
+
## [0.9.0] - 2026-06-29
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Two-tier async mapper (issue #120):
|
|
9
|
+
- `mapper.build_macro_map(cwd)` + `simplicio-mapper macro <path>` producing the
|
|
10
|
+
sub-second `simplicio.macro-map/v1` skeleton from filenames + manifests only
|
|
11
|
+
(no per-file content reads), with `confidence: "shallow"` (#121).
|
|
12
|
+
- `simplicio-mapper scan <path>` returning a `simplicio.map-job/v1` envelope:
|
|
13
|
+
macro inline + deep-pass pointers, deep in background by default,
|
|
14
|
+
synchronous under `CI=true`/`--sync`, `--await` to block until terminal,
|
|
15
|
+
persisted to `.simplicio/map-job.json` (#122).
|
|
16
|
+
- `simplicio-mapper status <path>` deriving `deep_running|complete|failed|unknown`
|
|
17
|
+
from `index.lock` + `index-state.json` freshness + `map-job.json`, with a
|
|
18
|
+
shared `--await`/`--timeout` helper (#123).
|
|
19
|
+
- `ADR-003-two-tier-async-mapper.md` and a "Two-tier async mapper" section in
|
|
20
|
+
`SIMPLICIO_INTEGRATION.md`.
|
|
21
|
+
- `simplicio-mapper flowchart <path>` command and the
|
|
22
|
+
`simplicio.service-flowchart/v1` contract. Builds a two-faced service map
|
|
23
|
+
and renders it as Mermaid in `.simplicio/docs/flowchart.md`:
|
|
24
|
+
- Frontend face — Angular screens linked to the services/endpoints in
|
|
25
|
+
their module scope, clickable buttons (`(click)` handlers) tied to the
|
|
26
|
+
endpoints their handler bodies call, and the *observable* rules encoded
|
|
27
|
+
per screen (route guards, persona gating, dynamic params, form
|
|
28
|
+
validators). Client calls that match no screen scope are listed as
|
|
29
|
+
unlinked services.
|
|
30
|
+
- Backend face — per server route (Azure Functions C# and FastAPI
|
|
31
|
+
Python): layer, auth level, request/response payload types, external
|
|
32
|
+
function-call count, database-access detection, and an ordered process
|
|
33
|
+
flow rendered as a per-endpoint Mermaid diagram.
|
|
34
|
+
- `flowchart.md` is now generated as part of `simplicio-mapper docs`,
|
|
35
|
+
`index --docs` and copied by `export-docs`.
|
|
36
|
+
- "Service Flowchart Contract" section in `SIMPLICIO_INTEGRATION.md`.
|
|
37
|
+
|
|
38
|
+
## [0.8.0] - 2026-06-02
|
|
39
|
+
|
|
40
|
+
### Added
|
|
41
|
+
- `simplicio_mapper.mechanical_edit` producer for the canonical
|
|
42
|
+
`simplicio.mechanical-edit/v1` contract (closes #110): `snapshot_hash`,
|
|
43
|
+
`range_hash`, `is_binary`, `extract_file_entry`, and `build_context`,
|
|
44
|
+
with binary/missing-file refusal and large-file compact mode.
|
|
45
|
+
- `simplicio_mapper.context_pack` producer for `simplicio.context-pack/v1`
|
|
46
|
+
and `simplicio_mapper.context_cache.ContextCache` for
|
|
47
|
+
`simplicio.context-cache/v1` (closes #115): callers/imports from the
|
|
48
|
+
call graph, related tests from the project map, per-range hashes, and
|
|
49
|
+
`needs_broader_context` with concrete reasons when upstream artifacts
|
|
50
|
+
or stable anchors are missing.
|
|
51
|
+
- "Native Runtime Contract" (closes #95), "Mechanical Edit Contract"
|
|
52
|
+
(closes #110), and "Context Packs and Hash-Based Cache" (closes #115)
|
|
53
|
+
sections in `SIMPLICIO_INTEGRATION.md`.
|
|
54
|
+
- Python `ruff` configuration and dev extra plus a `python-lint.yml`
|
|
55
|
+
workflow (closes #101).
|
|
56
|
+
- `scripts/check-version-sync.js` plus a `version-sync` job in
|
|
57
|
+
`scaffold-self-check.yml` (closes #102).
|
|
58
|
+
- `python-ci.yml` matrix workflow running pytest across Python 3.10–3.12
|
|
59
|
+
plus a `cargo test` + `maturin develop` parity check for the Rust crate
|
|
60
|
+
(closes #97); `publish-pypi.yml` now gates on `pytest` passing before
|
|
61
|
+
building distributions.
|
|
62
|
+
- Node ↔ Python mapper parity test (`tests/python/test_parity.py`) with
|
|
63
|
+
a deterministic fixture under `tests/fixtures/parity-host/`
|
|
64
|
+
(closes #98).
|
|
65
|
+
- Coverage for previously untested CLI paths — `--docs-only`,
|
|
66
|
+
`--json-only`, `--changed-only`, `--stack` / `--product-name` hint
|
|
67
|
+
injection, `index` failure boundary, and the `_watch` loop
|
|
68
|
+
(closes #103).
|
|
69
|
+
|
|
70
|
+
### Changed
|
|
71
|
+
- Endpoint path normalization in `simplicio-mapper endpoints` is now
|
|
72
|
+
project-agnostic (closes #104): the EVT-specific resource regexes are
|
|
73
|
+
gone; only placeholders, UUIDs, and numeric segments collapse to
|
|
74
|
+
`{id}`.
|
|
75
|
+
- Docusaurus site renamed from `llm-project-mapper` to `simplicio-mapper`
|
|
76
|
+
(`baseUrl`, `projectName`, navbar / footer URLs) and a `0.7.3` docs
|
|
77
|
+
snapshot was cut so the version dropdown matches the live release
|
|
78
|
+
(closes #100).
|
|
79
|
+
- `AGENTS.md`, `CLAUDE.md`, `.github/copilot-instructions.md`, and
|
|
80
|
+
`.specs/product/{VISION,DOMAIN,PERSONAS}.md` no longer carry
|
|
81
|
+
`<STACK>` / `<APP_NAME>` / `<PRODUCT_NAME>` placeholders; they now
|
|
82
|
+
describe the real Python + Node + optional Rust stack and the actual
|
|
83
|
+
command surface (closes #99).
|
|
84
|
+
- Dropped the `publish-npm.yml` workflow; the project ships PyPI-only
|
|
85
|
+
going forward.
|
|
86
|
+
|
|
87
|
+
## [0.7.3] - 2026-06-01
|
|
88
|
+
|
|
89
|
+
### Changed
|
|
90
|
+
- Restored the original operational README guide under the new growth-oriented landing page, preserving setup, architecture, video, mapper flags, and endpoint inventory details.
|
|
91
|
+
- Added Project DNA notes across localized READMEs and updated the globalization standard to require additive README refreshes rather than replacing repo-specific substance.
|
|
92
|
+
- Included the richer README in the Python and npm package metadata for the refreshed documentation release.
|
|
93
|
+
|
|
3
94
|
## [0.7.2] - 2026-06-01
|
|
4
95
|
|
|
5
96
|
### Changed
|
|
@@ -13,6 +104,20 @@ Format follows [Keep a Changelog 1.1.0](https://keepachangelog.com/en/1.1.0/) an
|
|
|
13
104
|
|
|
14
105
|
## [Unreleased]
|
|
15
106
|
|
|
107
|
+
### Changed
|
|
108
|
+
- `simplicio-mapper endpoints` endpoint path normalization is now project-agnostic
|
|
109
|
+
(closes #104). The previously hardcoded EVT-specific collapses for
|
|
110
|
+
`/api/v1/(areas|assessments|disciplines|...)/<slug>`,
|
|
111
|
+
`/api/v1/governance/(skill-versions|skills)/<slug>`,
|
|
112
|
+
`/api/v1/knowledge-assessment/runs/<slug>`,
|
|
113
|
+
`/api/v1/llm-gateway/(runs|skills|traces)/<slug>` and
|
|
114
|
+
`/api/v1/(clients/)?projects/<slug>` have been removed. The normalizer still
|
|
115
|
+
collapses path/query placeholders (`${foo}` / `{foo}`), UUIDs, and numeric ID
|
|
116
|
+
segments — these are stable, generic patterns. Downstream projects that
|
|
117
|
+
relied on slug-after-collection collapsing should switch their fixtures to
|
|
118
|
+
numeric or placeholder IDs (the `simplicio.endpoint-inventory/v1` schema is
|
|
119
|
+
unchanged).
|
|
120
|
+
|
|
16
121
|
## [0.7.1] - 2026-06-01
|
|
17
122
|
|
|
18
123
|
### Added
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: simplicio-mapper
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.9.0
|
|
4
4
|
Summary: Python-first project mapper that emits .simplicio/project-map.json and precedent-index.json for the Simplicio ecosystem.
|
|
5
5
|
Project-URL: Homepage, https://github.com/wesleysimplicio/simplicio-mapper
|
|
6
6
|
Project-URL: Repository, https://github.com/wesleysimplicio/simplicio-mapper
|
|
@@ -43,6 +43,9 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
43
43
|
Requires-Python: >=3.10
|
|
44
44
|
Requires-Dist: diskcache<6,>=5.6.3
|
|
45
45
|
Requires-Dist: orjson<4,>=3.11.9
|
|
46
|
+
Provides-Extra: dev
|
|
47
|
+
Requires-Dist: pytest<9,>=8; extra == 'dev'
|
|
48
|
+
Requires-Dist: ruff<0.17,>=0.15; extra == 'dev'
|
|
46
49
|
Description-Content-Type: text/markdown
|
|
47
50
|
|
|
48
51
|
# simplicio-mapper
|