elspais 0.11.0__py3-none-any.whl → 0.11.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.
- elspais/__init__.py +1 -1
- elspais/cli.py +75 -23
- elspais/commands/analyze.py +5 -6
- elspais/commands/changed.py +2 -6
- elspais/commands/config_cmd.py +4 -4
- elspais/commands/edit.py +32 -36
- elspais/commands/hash_cmd.py +24 -18
- elspais/commands/index.py +8 -7
- elspais/commands/init.py +4 -4
- elspais/commands/reformat_cmd.py +32 -43
- elspais/commands/rules_cmd.py +6 -2
- elspais/commands/trace.py +23 -19
- elspais/commands/validate.py +8 -10
- elspais/config/defaults.py +7 -1
- elspais/core/content_rules.py +0 -1
- elspais/core/git.py +4 -10
- elspais/core/parser.py +55 -56
- elspais/core/patterns.py +2 -6
- elspais/core/rules.py +10 -15
- elspais/mcp/__init__.py +2 -0
- elspais/mcp/context.py +1 -0
- elspais/mcp/serializers.py +1 -1
- elspais/mcp/server.py +54 -39
- elspais/reformat/__init__.py +13 -13
- elspais/reformat/detector.py +9 -16
- elspais/reformat/hierarchy.py +8 -7
- elspais/reformat/line_breaks.py +36 -38
- elspais/reformat/prompts.py +22 -12
- elspais/reformat/transformer.py +43 -41
- elspais/sponsors/__init__.py +0 -2
- elspais/testing/__init__.py +1 -1
- elspais/testing/result_parser.py +25 -21
- elspais/trace_view/__init__.py +4 -3
- elspais/trace_view/coverage.py +5 -5
- elspais/trace_view/generators/__init__.py +1 -1
- elspais/trace_view/generators/base.py +17 -12
- elspais/trace_view/generators/csv.py +2 -6
- elspais/trace_view/generators/markdown.py +3 -8
- elspais/trace_view/html/__init__.py +4 -2
- elspais/trace_view/html/generator.py +423 -289
- elspais/trace_view/models.py +25 -0
- elspais/trace_view/review/__init__.py +21 -18
- elspais/trace_view/review/branches.py +114 -121
- elspais/trace_view/review/models.py +232 -237
- elspais/trace_view/review/position.py +53 -71
- elspais/trace_view/review/server.py +264 -288
- elspais/trace_view/review/status.py +43 -58
- elspais/trace_view/review/storage.py +48 -72
- {elspais-0.11.0.dist-info → elspais-0.11.2.dist-info}/METADATA +12 -9
- {elspais-0.11.0.dist-info → elspais-0.11.2.dist-info}/RECORD +53 -53
- {elspais-0.11.0.dist-info → elspais-0.11.2.dist-info}/WHEEL +0 -0
- {elspais-0.11.0.dist-info → elspais-0.11.2.dist-info}/entry_points.txt +0 -0
- {elspais-0.11.0.dist-info → elspais-0.11.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: elspais
|
|
3
|
-
Version: 0.11.
|
|
3
|
+
Version: 0.11.2
|
|
4
4
|
Summary: Requirements validation and traceability tools - L-Space connects all libraries
|
|
5
5
|
Project-URL: Homepage, https://github.com/anspar/elspais
|
|
6
6
|
Project-URL: Documentation, https://github.com/anspar/elspais#readme
|
|
@@ -376,19 +376,19 @@ Options:
|
|
|
376
376
|
--help Show help
|
|
377
377
|
|
|
378
378
|
Commands:
|
|
379
|
-
validate Validate requirements format, links, hashes
|
|
379
|
+
validate Validate requirements format, links, and hashes
|
|
380
380
|
trace Generate traceability matrix
|
|
381
381
|
hash Manage requirement hashes (verify, update)
|
|
382
|
-
|
|
382
|
+
index Manage INDEX.md file (validate, regenerate)
|
|
383
|
+
analyze Analyze requirement hierarchy (hierarchy, orphans, coverage)
|
|
383
384
|
changed Detect git changes to spec files
|
|
384
|
-
|
|
385
|
-
edit Edit requirements in-place (status, implements, move)
|
|
386
|
-
config View and modify configuration
|
|
387
|
-
rules View and manage content rules
|
|
388
|
-
index Validate or regenerate INDEX.md
|
|
385
|
+
version Show version and check for updates
|
|
389
386
|
init Create .elspais.toml configuration
|
|
387
|
+
edit Edit requirements in-place (implements, status, move)
|
|
388
|
+
config View and modify configuration (show, get, set, ...)
|
|
389
|
+
rules View and manage content rules (list, show)
|
|
390
|
+
reformat-with-claude Reformat requirements using AI (Acceptance Criteria -> Assertions)
|
|
390
391
|
mcp MCP server commands (requires elspais[mcp])
|
|
391
|
-
version Show version and check for updates
|
|
392
392
|
```
|
|
393
393
|
|
|
394
394
|
See [docs/commands.md](docs/commands.md) for comprehensive command documentation.
|
|
@@ -401,6 +401,9 @@ git clone https://github.com/anspar/elspais.git
|
|
|
401
401
|
cd elspais
|
|
402
402
|
pip install -e ".[dev]"
|
|
403
403
|
|
|
404
|
+
# Enable git hooks (verifies docs stay in sync before push)
|
|
405
|
+
git config core.hooksPath .githooks
|
|
406
|
+
|
|
404
407
|
# Run tests
|
|
405
408
|
pytest
|
|
406
409
|
|
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
elspais/__init__.py,sha256=
|
|
1
|
+
elspais/__init__.py,sha256=ax6rM4V27X5ZItQ5nIabGHDg8B1n38kyxnr0x-tW_Lw,1014
|
|
2
2
|
elspais/__main__.py,sha256=rCMaObqJeT_6dhyfND7S4dh_lv30j7Ww3Z7992YYwaE,130
|
|
3
|
-
elspais/cli.py,sha256=
|
|
3
|
+
elspais/cli.py,sha256=PZjgis0e1w7ppZdJGONxoP--R14p8He7PYmRzUbpmxY,19617
|
|
4
4
|
elspais/commands/__init__.py,sha256=jS7ry2ez7xri-fUlYUw9fGKJi5yTHtVN4PU8voHjgLI,155
|
|
5
|
-
elspais/commands/analyze.py,sha256=
|
|
6
|
-
elspais/commands/changed.py,sha256=
|
|
7
|
-
elspais/commands/config_cmd.py,sha256=
|
|
8
|
-
elspais/commands/edit.py,sha256=
|
|
9
|
-
elspais/commands/hash_cmd.py,sha256=
|
|
10
|
-
elspais/commands/index.py,sha256=
|
|
11
|
-
elspais/commands/init.py,sha256=
|
|
12
|
-
elspais/commands/reformat_cmd.py,sha256=
|
|
13
|
-
elspais/commands/rules_cmd.py,sha256=
|
|
14
|
-
elspais/commands/trace.py,sha256=
|
|
15
|
-
elspais/commands/validate.py,sha256=
|
|
5
|
+
elspais/commands/analyze.py,sha256=sYJ56eRGAVEF8xsD08DeNrrfP8C9aqEGmZGrxKDdDcA,7117
|
|
6
|
+
elspais/commands/changed.py,sha256=MtfVsU89TxGuinxh83xmLSHeCZly7m0FJW0UzGJ4FnM,4811
|
|
7
|
+
elspais/commands/config_cmd.py,sha256=WSozX2mnQwhKsu6UCzxST_tH9ZbrIPpwJhu4Mv-LHIE,13918
|
|
8
|
+
elspais/commands/edit.py,sha256=OEYEcdusY6BGuxjIJFDNGIaNRadSQ4ZXzjgzcS8yrjU,16025
|
|
9
|
+
elspais/commands/hash_cmd.py,sha256=KPypAEEdUIwTPnZrzodlb_OgWyVxWg1YtVCNJ2W_KAU,7937
|
|
10
|
+
elspais/commands/index.py,sha256=BGh7SeC437kWTrQSdzpd-UqwOCJdMeA_3snFsOuwO_s,5312
|
|
11
|
+
elspais/commands/init.py,sha256=O5YKXvdWoOENkKV1t7latAMl1W0r0OCX6RaneaWX0vU,3870
|
|
12
|
+
elspais/commands/reformat_cmd.py,sha256=YR0Cz3O9saJr-ZmtlqLpOSSEVNCv6Rn0x79191ytZ3c,14714
|
|
13
|
+
elspais/commands/rules_cmd.py,sha256=xXVRrKlBOw_lcX_XDebMjjGz_oshrfSTRLN2Qru6OLo,3463
|
|
14
|
+
elspais/commands/trace.py,sha256=oApwzn0d5ILyS2hENsl932udOYYDfFdEXohNKd76UxA,12658
|
|
15
|
+
elspais/commands/validate.py,sha256=eiapn9KadjtABza16WdnoJL_QypAeWoRDBHqdVpmBDc,15627
|
|
16
16
|
elspais/config/__init__.py,sha256=NkQEonHWWiXXCDrfehOCrsEYSuhj75KYj8oBQ7FuS4c,292
|
|
17
|
-
elspais/config/defaults.py,sha256=
|
|
17
|
+
elspais/config/defaults.py,sha256=aRrw8Mrj6dVJB4-H3pJtCHGCaWZeRDgdI2P9QCDj6Q4,5274
|
|
18
18
|
elspais/config/loader.py,sha256=MnG_j2W1pOSRTTUHAOvu5xcJUAzDFNPvRjloFXpM15w,13827
|
|
19
19
|
elspais/core/__init__.py,sha256=OTQ1TOf7iLN4czmlkrV5tiaxpAat0VcrWpxYbfonAys,576
|
|
20
|
-
elspais/core/content_rules.py,sha256=
|
|
21
|
-
elspais/core/git.py,sha256=
|
|
20
|
+
elspais/core/content_rules.py,sha256=XmrPuwD7rjUnVT8WPFYv7THO_el0Gwc0_Rb7TgQyA6Y,4505
|
|
21
|
+
elspais/core/git.py,sha256=CyRysPQ6UK2KFxkDvwvVflRLEIvAI4r_V48J998b-Ro,11179
|
|
22
22
|
elspais/core/hasher.py,sha256=X3Ry_M6zgs2pZPZ3UFItlvM0mRW6aPS0SKPhCYeaFUE,4259
|
|
23
23
|
elspais/core/models.py,sha256=qwi9rVEUGLW2bJABW2s2-2OzyI3hdl3rdvkWRuTl908,9719
|
|
24
|
-
elspais/core/parser.py,sha256=
|
|
25
|
-
elspais/core/patterns.py,sha256
|
|
26
|
-
elspais/core/rules.py,sha256=
|
|
27
|
-
elspais/mcp/__init__.py,sha256=
|
|
24
|
+
elspais/core/parser.py,sha256=JsJf5At8uOqkigWqIXngXXrCyahqSIrRPT92ZuZ4HyU,23995
|
|
25
|
+
elspais/core/patterns.py,sha256=-aL1-aaZdViR3Dh9uxajyf9wd6nXvAXy2nEZeGL-iOA,13046
|
|
26
|
+
elspais/core/rules.py,sha256=mQ05pCYnsTGq2tRHYbQ1HGbRl3GC0aivCvc6hLIM_68,18977
|
|
27
|
+
elspais/mcp/__init__.py,sha256=m7rCKV2Yhlb5iVvoqSCWp5xxbkouoZeyDwF8VD1MB9I,1145
|
|
28
28
|
elspais/mcp/__main__.py,sha256=oqpwTiE14vr5AGnP0MxRzILx_hYqonUMMK96dX-EXVw,134
|
|
29
|
-
elspais/mcp/context.py,sha256=
|
|
30
|
-
elspais/mcp/serializers.py,sha256=
|
|
31
|
-
elspais/mcp/server.py,sha256=
|
|
32
|
-
elspais/reformat/__init__.py,sha256=
|
|
33
|
-
elspais/reformat/detector.py,sha256=
|
|
34
|
-
elspais/reformat/hierarchy.py,sha256=
|
|
35
|
-
elspais/reformat/line_breaks.py,sha256=
|
|
36
|
-
elspais/reformat/prompts.py,sha256=
|
|
37
|
-
elspais/reformat/transformer.py,sha256=
|
|
38
|
-
elspais/sponsors/__init__.py,sha256=
|
|
39
|
-
elspais/testing/__init__.py,sha256=
|
|
29
|
+
elspais/mcp/context.py,sha256=tcx0UprV1L6bVlD5IUbVLNBo72-0uLucnr7KT3LymS4,5539
|
|
30
|
+
elspais/mcp/serializers.py,sha256=EfqeolkQH_bPpVczMC9YL26De0r1m49g3i6mzzr--ZA,2826
|
|
31
|
+
elspais/mcp/server.py,sha256=tQ22LaOU-8rsEeNxQvwjvekc0wWC2j0XjCe8fxdJfAk,10638
|
|
32
|
+
elspais/reformat/__init__.py,sha256=8Hfm-6E5CEdTlFFf_fpiZ2M9suwLpdeHsDFyMXVWBq0,1256
|
|
33
|
+
elspais/reformat/detector.py,sha256=6EvWe8xs7in_wMOiX4RjPlBG4K3AZkXor2dgUFlzB8U,3499
|
|
34
|
+
elspais/reformat/hierarchy.py,sha256=Mxz0PIQYnuELJhyTckeWeOjXj9wMO3E_BWyoUKoRr5g,8081
|
|
35
|
+
elspais/reformat/line_breaks.py,sha256=gA3lAexa31uA-sT3mlU2x0MlK6oJnwcvC5WqLB9FxSk,6277
|
|
36
|
+
elspais/reformat/prompts.py,sha256=FGh5rIPi92saLfSHi9b5mD6pJsxp7p_fJjOkQhP1Jno,4397
|
|
37
|
+
elspais/reformat/transformer.py,sha256=hsrv_1n2VqHmtOKFL7pY7B7lVd326nM8a0zG7tpguBs,8159
|
|
38
|
+
elspais/sponsors/__init__.py,sha256=ueikkPnyAVLNeW-9bF-HG5fUwJNd2vmTUEMeHRLGJwY,13010
|
|
39
|
+
elspais/testing/__init__.py,sha256=BNbKelkUR3HwI7G91txlluE3z4CKN4Obl-avcquKfbs,879
|
|
40
40
|
elspais/testing/config.py,sha256=PQkrnuk_p8pObc-Nio3s3mIKLO4AfB-2eiwXruXTw0Y,1620
|
|
41
41
|
elspais/testing/mapper.py,sha256=EGund_KgeYbAnWRRcnuVs0xCzlf7EvJ-qiluSmvRIso,5649
|
|
42
|
-
elspais/testing/result_parser.py,sha256=
|
|
42
|
+
elspais/testing/result_parser.py,sha256=YgSNQa3mlT-ovo3PzjoUypN2urR1dIunPcfdB2IMAH8,9415
|
|
43
43
|
elspais/testing/scanner.py,sha256=PEn0qJCE2eX2SCru3Cc-v18mf81q7BNkPYE-MZ3m8CM,7037
|
|
44
|
-
elspais/trace_view/__init__.py,sha256=
|
|
45
|
-
elspais/trace_view/coverage.py,sha256=
|
|
46
|
-
elspais/trace_view/models.py,sha256=
|
|
44
|
+
elspais/trace_view/__init__.py,sha256=kWZNbZgJ0Y8z99b24r5PFVlzBGe1rZQ6PJy-F4WT8K4,1792
|
|
45
|
+
elspais/trace_view/coverage.py,sha256=vFKwqRswztq3G39EyjaAOb4rvolVKd5vl0Nl3PSD3J4,6139
|
|
46
|
+
elspais/trace_view/models.py,sha256=Gvt2sTuhs8naM6EaNJHEuXYOL6kZWeQMf-zHZYUq7Nw,12033
|
|
47
47
|
elspais/trace_view/scanning.py,sha256=c4zxj9_wI5aYhUHb2boiI5kG0OXvhs8rFaJ2Gc229ls,7511
|
|
48
|
-
elspais/trace_view/generators/__init__.py,sha256
|
|
49
|
-
elspais/trace_view/generators/base.py,sha256=
|
|
50
|
-
elspais/trace_view/generators/csv.py,sha256=
|
|
51
|
-
elspais/trace_view/generators/markdown.py,sha256=
|
|
52
|
-
elspais/trace_view/html/__init__.py,sha256=
|
|
53
|
-
elspais/trace_view/html/generator.py,sha256=
|
|
48
|
+
elspais/trace_view/generators/__init__.py,sha256=wnXCNq1V1bV67wJpKpCVI2YZ9iWfEbl-uZAlFGNqIE8,424
|
|
49
|
+
elspais/trace_view/generators/base.py,sha256=7K63STIT0cw_lftwrodx0XkTJ7dC_JeHSPUUCnBDZbQ,12422
|
|
50
|
+
elspais/trace_view/generators/csv.py,sha256=4KPbeyFAo4cbqB6d9yCwYKYFPZHe3Ja5UYLwBONaG2I,3513
|
|
51
|
+
elspais/trace_view/generators/markdown.py,sha256=ozQ9DCfgt_iYxNIF_YYsOCtv78y-S2xeAbkHD8xodSY,5699
|
|
52
|
+
elspais/trace_view/html/__init__.py,sha256=7CzeRGfqjIdfgUzZZEvcUFrMeZHFhNTxvXHqHLF4ykg,793
|
|
53
|
+
elspais/trace_view/html/generator.py,sha256=uMV4O6Jpdr3_jM3NzJZDQDQb2oeifcC5J3pIYRBmCP0,48142
|
|
54
54
|
elspais/trace_view/html/templates/base.html,sha256=hy2G-Gw7qDCu7FEdt5VeBlIwoV9vJoKk1J5LDwEH8og,13176
|
|
55
55
|
elspais/trace_view/html/templates/components/code_viewer_modal.html,sha256=7S_ocNo2mfWMimXGlhhUWR7IUhdAiASdecsUPWmCdEw,736
|
|
56
56
|
elspais/trace_view/html/templates/components/file_picker_modal.html,sha256=hb7W0Gfkl_FFAz42wvVzPwHplWgRuU_0-NPmU5XM8rg,1182
|
|
@@ -72,13 +72,13 @@ elspais/trace_view/html/templates/partials/review/review-sync.js,sha256=xr4qrNRm
|
|
|
72
72
|
elspais/trace_view/html/templates/partials/review/help/help-panel.json,sha256=A592sy3spIjvTBj87Yl_Ow8bm09s2JY-SAWc2Ac_jjU,14518
|
|
73
73
|
elspais/trace_view/html/templates/partials/review/help/onboarding.json,sha256=uqqLXdD1rgR8bobnBFTAkgcMbbrWeyRnk5jX-1vbvHI,2942
|
|
74
74
|
elspais/trace_view/html/templates/partials/review/help/tooltips.json,sha256=P9VfihRKL7BamrYfXRI855J51KMU29wbwpQGa5hO0y8,8714
|
|
75
|
-
elspais/trace_view/review/__init__.py,sha256=
|
|
76
|
-
elspais/trace_view/review/branches.py,sha256=
|
|
77
|
-
elspais/trace_view/review/models.py,sha256=
|
|
78
|
-
elspais/trace_view/review/position.py,sha256=
|
|
79
|
-
elspais/trace_view/review/server.py,sha256=
|
|
80
|
-
elspais/trace_view/review/status.py,sha256=
|
|
81
|
-
elspais/trace_view/review/storage.py,sha256=
|
|
75
|
+
elspais/trace_view/review/__init__.py,sha256=Iglo86k7b5ALYxLhcrKCux2_EfKuqYSWJsOoJwmPuBM,1299
|
|
76
|
+
elspais/trace_view/review/branches.py,sha256=vLvXs76sehlCy6ERl47GWURYNcQ7jeMzFWfIcv-s4xo,36166
|
|
77
|
+
elspais/trace_view/review/models.py,sha256=aN-tQdog5PrNXNya-wMaxL5WIdxRtcu2pcoaL9z1MEA,40316
|
|
78
|
+
elspais/trace_view/review/position.py,sha256=5VN052JzKYPHFbWOFZde_on9C_cid3SLIYCQMc71-iY,20874
|
|
79
|
+
elspais/trace_view/review/server.py,sha256=7KZY-61JKHkqBhhP-Jpsl-bUYOdmS8SE-giEwym0jnk,35886
|
|
80
|
+
elspais/trace_view/review/status.py,sha256=FESGOEacKXiJqWt0Kcwd2e3I5jsh9Bdzsa3-OrCTh_c,15378
|
|
81
|
+
elspais/trace_view/review/storage.py,sha256=cGoALBsrZrCsM0kfzFEl3EC9buKEWz2I-ahu4OztsG0,38056
|
|
82
82
|
elspais/trace_view/specs/README.md,sha256=LY3Ilp1RNYJYxAFV3KRTp2ASp5nyUhkFkgPFY2BEdEU,3282
|
|
83
83
|
elspais/trace_view/specs/tv-d00001-template-architecture.md,sha256=WUnD2cYSnGqaAtzaCzYQdMV2S_iWUF-aHb6-UYmW_5E,1753
|
|
84
84
|
elspais/trace_view/specs/tv-d00002-css-extraction.md,sha256=28KeqYDFrCsms8AXjKKiA8yn85_kT4nZOOqIlMB553c,1653
|
|
@@ -94,8 +94,8 @@ elspais/trace_view/specs/tv-d00015-status-modifier.md,sha256=MK7YwLWr0KFZXImJefF
|
|
|
94
94
|
elspais/trace_view/specs/tv-d00016-js-integration.md,sha256=wofQ4qkCCILpjzFTtAKIwL7FB47KGoPpW9ox2k-BQ7c,1658
|
|
95
95
|
elspais/trace_view/specs/tv-p00001-html-generator.md,sha256=tv4cP0CynaRPxHKTzGN3r9CXqQBbioVX2ESOcOBKnUI,1792
|
|
96
96
|
elspais/trace_view/specs/tv-p00002-review-system.md,sha256=JQJSwNbZ_Hkqk43QQ9JKKhTBsfI0rF1Hp_3RIR6hS-4,1609
|
|
97
|
-
elspais-0.11.
|
|
98
|
-
elspais-0.11.
|
|
99
|
-
elspais-0.11.
|
|
100
|
-
elspais-0.11.
|
|
101
|
-
elspais-0.11.
|
|
97
|
+
elspais-0.11.2.dist-info/METADATA,sha256=Jlt2P-0_ky4w_fE0LYow3DMtW4ou_gGiKx0eqOntvFo,11634
|
|
98
|
+
elspais-0.11.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
99
|
+
elspais-0.11.2.dist-info/entry_points.txt,sha256=yWZZEfn2fBSKSzGoS-fMQ9YoTkyeu6-i7Oht6NsdKpk,45
|
|
100
|
+
elspais-0.11.2.dist-info/licenses/LICENSE,sha256=x_dNMsy_askp2MmKXZFL2bKW_tDiJHcRTyAg0TY1RMI,1063
|
|
101
|
+
elspais-0.11.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|