fix(store): dash capability IDs + .chain bundles (chain catalog conformance)
chain's catalog charset (naming.rs check_segment, capability-namespaces.yaml) allows only [a-z0-9-] per dot-segment — underscores are rejected by `chain validate`. Repack all 8 modules with the dash capability form (econ.skm-score, law.benefit-score, …) and align the store index, flows, app strings and docs to match. Bundles now use the .chain extension (content-addressed; legacy .fai would still install). - store/store.yaml: name: dash, wasm_url .chain, refreshed sha256 - store/SHA256.txt: 8 new .chain hashes - flows + app/lib + RUN.md + MACHBARKEITSSTUDIE.md: capability refs _ -> - - left untouched: text_akoma_normalize.wasm artifact, DB field skm_score, backlog module law.skm_score Signed-off-by: flemming-it <sf@flemming.it>
This commit is contained in:
parent
c51ef0e004
commit
0c536c5b91
11 changed files with 104 additions and 96 deletions
|
|
@ -178,18 +178,18 @@ angreifbar und wertlos. Code zweitrangig.
|
|||
│ ABI chain:platform │ │ │
|
||||
├──────────────────────────────┼─────────┼──────────────────────────┤
|
||||
│ chain-modules/ (generisch): │ │ http.request │
|
||||
│ text.akoma_normalize │ │ text.extract (PDF/DOCX) │
|
||||
│ text.deontic_extract │ │ text.anonymize (DSGVO) │
|
||||
│ graph.citation_extract │ │ text.translate (DE↔EN) │
|
||||
│ text.readability_score │ │ text.summarize │
|
||||
│ stats.cohort_size │ │ llm.chat (Ollama-kompat.)│
|
||||
│ graph.shapley_attribution │ │ system.approval@^0 │
|
||||
│ text.akoma-normalize │ │ text.extract (PDF/DOCX) │
|
||||
│ text.deontic-extract │ │ text.anonymize (DSGVO) │
|
||||
│ graph.citation-extract │ │ text.translate (DE↔EN) │
|
||||
│ text.readability-score │ │ text.summarize │
|
||||
│ stats.cohort-size │ │ llm.chat (Ollama-kompat.)│
|
||||
│ graph.shapley-attribution │ │ system.approval@^0 │
|
||||
│ │ │ debug.echo (Referenz) │
|
||||
│ chain-modules-econ/: │ │ │
|
||||
│ econ.skm_score │ │ │
|
||||
│ econ.skm-score │ │ │
|
||||
│ │ │ │
|
||||
│ chain-modules-law/ (domain): │ │ │
|
||||
│ law.benefit_score │ │ │
|
||||
│ law.benefit-score │ │ │
|
||||
└──────────────────────────────┘ └──────────────────────────┘
|
||||
|
||||
Heatmap rendert der **Client** (Flutter, CustomPainter) — kein
|
||||
|
|
@ -200,14 +200,14 @@ angreifbar und wertlos. Code zweitrangig.
|
|||
**Begründung — Reuse-Lens:** Module-Naming reflektiert Wiederverwend
|
||||
barkeit. Was kein juristisches Domänen-Wissen braucht, geht in
|
||||
`chain-modules/` (generisches Org) und ist damit auch in anderen
|
||||
F∆I-Projekten und für externe Nutzer wertvoll: `text.akoma_normalize`
|
||||
F∆I-Projekten und für externe Nutzer wertvoll: `text.akoma-normalize`
|
||||
ist relevant für jeden, der Rechtsdokumente parst (EU-Parlament,
|
||||
Italien, Brasilien); `text.deontic_extract` für Verträge, ISO-Normen,
|
||||
Policies; `graph.citation_extract` für wiss. Paper, Patente, Spezi
|
||||
Italien, Brasilien); `text.deontic-extract` für Verträge, ISO-Normen,
|
||||
Policies; `graph.citation-extract` für wiss. Paper, Patente, Spezi
|
||||
fikationen. Damit ist `chain-modules-law/` am Ende sehr klein —
|
||||
nur `law.benefit_score`, weil die 7 Bewertungs-Dimensionen
|
||||
nur `law.benefit-score`, weil die 7 Bewertungs-Dimensionen
|
||||
(Schutz/Markt/Rechtssicherheit/EU-Binnenmarkt/…) genuin juristisch-
|
||||
politisch konventioniert sind. **`text.akoma_normalize` ist der
|
||||
politisch konventioniert sind. **`text.akoma-normalize` ist der
|
||||
Pflicht-Eingang**: heterogene Quellen (gesetze-im-internet XML,
|
||||
landesrecht-berlin HTML, EUR-Lex FORMEX) werden in Akoma-Ntoso-XML
|
||||
normalisiert — ab da nur noch ein Datenformat. Alles Generische
|
||||
|
|
@ -231,24 +231,24 @@ steps:
|
|||
method: GET
|
||||
etag_cache: true
|
||||
- id: normalize
|
||||
use: text.akoma_normalize@^0 # XML | HTML | FORMEX → Akoma Ntoso
|
||||
use: text.akoma-normalize@^0 # XML | HTML | FORMEX → Akoma Ntoso
|
||||
with: { content: ${{ pull.body }}, mime: ${{ pull.content_type }} }
|
||||
- id: graph
|
||||
use: graph.citation_extract@^0
|
||||
use: graph.citation-extract@^0
|
||||
with: { norm: ${{ normalize.norm }} }
|
||||
- id: duties
|
||||
use: text.deontic_extract@^0
|
||||
use: text.deontic-extract@^0
|
||||
with: { norm: ${{ normalize.norm }} }
|
||||
- id: skm
|
||||
use: econ.skm_score@^0
|
||||
use: econ.skm-score@^0
|
||||
with:
|
||||
duties: ${{ duties.list }}
|
||||
population_table: "destatis://unternehmensregister/berlin-kmu"
|
||||
- id: nutzen
|
||||
use: law.benefit_score@^0
|
||||
use: law.benefit-score@^0
|
||||
with: { norm: ${{ normalize.norm }}, duties: ${{ duties.list }} }
|
||||
- id: frust
|
||||
use: text.readability_score@^0
|
||||
use: text.readability-score@^0
|
||||
with: { norm: ${{ normalize.norm }}, graph: ${{ graph.edges }} }
|
||||
- id: review
|
||||
use: system.approval@^0
|
||||
|
|
@ -780,7 +780,7 @@ Juristen-Approval und PDF-Ausgabe.
|
|||
- [ ] Modul `law.graph_extract` (Verweisextraktion, sehr eingeschränkt:
|
||||
„§X i.V.m. §Y", „Artikel Z DSGVO" usw.)
|
||||
- [ ] Modul `law.skm_score` mit *manuell* gepflegten Aufwand-Schätzungen
|
||||
- [ ] Modul `law.benefit_score` mit RAG + Approval
|
||||
- [ ] Modul `law.benefit-score` mit RAG + Approval
|
||||
- [ ] Modul `law.frust_score` (deterministisch, kein LLM)
|
||||
- [ ] Flow `bewerten-eine-norm.yaml`
|
||||
- [ ] PDF-Export-Modul (für AG-Sitzungen)
|
||||
|
|
@ -874,7 +874,7 @@ liegt dann woanders.
|
|||
Vendor-Namespace `fai/`), Lizenz Apache 2.0, DCO an, CI-Pipeline analog
|
||||
`fai/chain` (DCO-Sign-off, Conventional Commits, SBOM, sigstore).
|
||||
`law.*`-Module später in `chain-modules-law/` als product-scoped Org.
|
||||
6. **Modul-Stub `text.akoma_normalize`** in `chain-modules/text-akoma-normalize/`
|
||||
6. **Modul-Stub `text.akoma-normalize`** in `chain-modules/text-akoma-normalize/`
|
||||
als ersten Code-Commit (vertikaler Durchstich beginnt mit dem Pflicht-Eingang;
|
||||
HTTP-Pull macht `http.request` aus Bestand). Parallel **Flutter-App-Skelett**
|
||||
in `fai_reclaim/app/` (Theme nach fai_web-Palette, Hub-Connect-Seite).
|
||||
|
|
|
|||
10
RUN.md
10
RUN.md
|
|
@ -121,10 +121,10 @@ Selber Aufruf für die anderen sieben Verzeichnisse.
|
|||
|
||||
```bash
|
||||
chain serve &
|
||||
chain install text.akoma_normalize text.deontic_extract \
|
||||
graph.citation_extract text.readability_score \
|
||||
stats.cohort_size graph.shapley_attribution \
|
||||
econ.skm_score law.benefit_score \
|
||||
chain install text.akoma-normalize text.deontic-extract \
|
||||
graph.citation-extract text.readability-score \
|
||||
stats.cohort-size graph.shapley-attribution \
|
||||
econ.skm-score law.benefit-score \
|
||||
http.request system.approval
|
||||
chain run flows/durchstich-gewo-14.yaml \
|
||||
--input norm_url=https://www.gesetze-im-internet.de/gewo/__14.xml \
|
||||
|
|
@ -144,4 +144,4 @@ keine UI-Änderung nötig.
|
|||
- DESTATIS GENESIS-API-Adapter (Woche 4)
|
||||
- Juristen-Approval-Backend-Anbindung (Woche 5)
|
||||
- Volle Akoma-Ntoso-Konvertierung (v0.2)
|
||||
- HTML- und FORMEX-Adapter für `text.akoma_normalize` (v0.2/0.3)
|
||||
- HTML- und FORMEX-Adapter für `text.akoma-normalize` (v0.2/0.3)
|
||||
|
|
|
|||
|
|
@ -13,33 +13,33 @@ inputs:
|
|||
ratings: json
|
||||
steps:
|
||||
- id: normalize
|
||||
use: text.akoma_normalize@^0
|
||||
use: text.akoma-normalize@^0
|
||||
with:
|
||||
content: $inputs.content
|
||||
mime: "application/xml"
|
||||
- id: deontic
|
||||
use: text.deontic_extract@^0
|
||||
use: text.deontic-extract@^0
|
||||
with:
|
||||
norm: $normalize.norm
|
||||
- id: citations
|
||||
use: graph.citation_extract@^0
|
||||
use: graph.citation-extract@^0
|
||||
with:
|
||||
norm: $normalize.norm
|
||||
- id: cohort
|
||||
use: stats.cohort_size@^0
|
||||
use: stats.cohort-size@^0
|
||||
with:
|
||||
cohort_id: $inputs.cohort_id
|
||||
- id: frust
|
||||
use: text.readability_score@^0
|
||||
use: text.readability-score@^0
|
||||
with:
|
||||
norm: $normalize.norm
|
||||
graph: $citations.citations
|
||||
- id: skm
|
||||
use: econ.skm_score@^0
|
||||
use: econ.skm-score@^0
|
||||
with:
|
||||
duties: $inputs.duties
|
||||
- id: benefit
|
||||
use: law.benefit_score@^0
|
||||
use: law.benefit-score@^0
|
||||
with:
|
||||
ratings: $inputs.ratings
|
||||
outputs:
|
||||
|
|
@ -73,11 +73,11 @@ class NormLiveInput {
|
|||
final String cohortId;
|
||||
|
||||
/// `{ duties: [ { population, frequency, tariff_eur_per_hour,
|
||||
/// time_hours_per_case, source_norm, tier } ] }` for econ.skm_score.
|
||||
/// time_hours_per_case, source_norm, tier } ] }` for econ.skm-score.
|
||||
final Map<String, Object?> duties;
|
||||
|
||||
/// `{ schutz, markt, rechtssicherheit, eu_binnenmarkt, sicherheit,
|
||||
/// umwelt, einnahmen }` (each 0..5) for law.benefit_score.
|
||||
/// umwelt, einnahmen }` (each 0..5) for law.benefit-score.
|
||||
final Map<String, Object?> ratings;
|
||||
|
||||
final Jurisdiction jurisdiction;
|
||||
|
|
|
|||
|
|
@ -270,7 +270,7 @@ class Norm {
|
|||
final String? supersededNote;
|
||||
|
||||
/// The actual paragraphs of the norm text, normalised by
|
||||
/// `text.akoma_normalize` in live mode. In demo mode the
|
||||
/// `text.akoma-normalize` in live mode. In demo mode the
|
||||
/// fixture quotes the public source verbatim under §5 UrhG
|
||||
/// (amtliche Werke).
|
||||
final List<NormParagraph> paragraphs;
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ class NormTextCard extends StatelessWidget {
|
|||
if (paragraphs.isEmpty)
|
||||
Text(
|
||||
'Für diese Norm ist noch kein normalisierter Text '
|
||||
'eingebunden. Wenn Ch∆In mit `text.akoma_normalize@^0` '
|
||||
'eingebunden. Wenn Ch∆In mit `text.akoma-normalize@^0` '
|
||||
'gegen die Quell-URL läuft, erscheinen die Absätze hier.',
|
||||
style: t.bodyLarge?.copyWith(color: ReclaimColors.mute),
|
||||
)
|
||||
|
|
|
|||
|
|
@ -18,13 +18,13 @@ inputs:
|
|||
|
||||
steps:
|
||||
- id: normalize
|
||||
use: text.akoma_normalize@^0
|
||||
use: text.akoma-normalize@^0
|
||||
with:
|
||||
content: $inputs.content
|
||||
mime: "application/xml"
|
||||
|
||||
- id: cohort
|
||||
use: stats.cohort_size@^0
|
||||
use: stats.cohort-size@^0
|
||||
with:
|
||||
cohort_id: $inputs.cohort_id
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
# + frust + cohort, also die Form, die HubRepository.list() in der
|
||||
# Recl∆Im-App in Evaluation-Objekte übersetzt.
|
||||
#
|
||||
# NICHT enthalten: econ.skm_score und law.benefit_score. Beide
|
||||
# NICHT enthalten: econ.skm-score und law.benefit-score. Beide
|
||||
# Module lesen ihren Tupel-/Ratings-Input über `require_json`,
|
||||
# d.h. sie erwarten ein Payload::Json. In einem Flow lässt sich
|
||||
# ein Json-Wert aber nur aus einem vorhergehenden Step-Output
|
||||
|
|
@ -35,28 +35,28 @@ inputs:
|
|||
|
||||
steps:
|
||||
- id: normalize
|
||||
use: text.akoma_normalize@^0
|
||||
use: text.akoma-normalize@^0
|
||||
with:
|
||||
content: $inputs.content
|
||||
mime: "application/xml"
|
||||
|
||||
- id: deontic
|
||||
use: text.deontic_extract@^0
|
||||
use: text.deontic-extract@^0
|
||||
with:
|
||||
norm: $normalize.norm
|
||||
|
||||
- id: citations
|
||||
use: graph.citation_extract@^0
|
||||
use: graph.citation-extract@^0
|
||||
with:
|
||||
norm: $normalize.norm
|
||||
|
||||
- id: cohort
|
||||
use: stats.cohort_size@^0
|
||||
use: stats.cohort-size@^0
|
||||
with:
|
||||
cohort_id: $inputs.cohort_id
|
||||
|
||||
- id: frust
|
||||
use: text.readability_score@^0
|
||||
use: text.readability-score@^0
|
||||
with:
|
||||
norm: $normalize.norm
|
||||
graph: $citations.citations
|
||||
|
|
@ -65,11 +65,11 @@ steps:
|
|||
# nach dem Fix gilt — `inputs:` oben um `duties: json` /
|
||||
# `ratings: json` ergänzen und mit --input duties=… speisen:
|
||||
# - id: skm
|
||||
# use: econ.skm_score@^0
|
||||
# use: econ.skm-score@^0
|
||||
# with:
|
||||
# duties: $inputs.duties
|
||||
# - id: benefit
|
||||
# use: law.benefit_score@^0
|
||||
# use: law.benefit-score@^0
|
||||
# with:
|
||||
# ratings: $inputs.ratings
|
||||
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
# Phase-0 vertikaler Durchstich für GewO §14.
|
||||
#
|
||||
# Minimaler Pfad zum ersten echten flow.completed-Event im
|
||||
# Audit-Log — http.request → text.akoma_normalize →
|
||||
# stats.cohort_size → system.approval. Beweist, dass die
|
||||
# Audit-Log — http.request → text.akoma-normalize →
|
||||
# stats.cohort-size → system.approval. Beweist, dass die
|
||||
# Recl∆Im-Pipeline live gegen den Ch∆In-Hub läuft. Die
|
||||
# komplexen Bewertungs-Schritte (econ.skm_score,
|
||||
# law.benefit_score, graph.shapley_attribution) bündeln wir in
|
||||
# komplexen Bewertungs-Schritte (econ.skm-score,
|
||||
# law.benefit-score, graph.shapley-attribution) bündeln wir in
|
||||
# einem zweiten Flow, wenn dieser hier durchläuft.
|
||||
#
|
||||
# Voraussetzung — alle Module installieren:
|
||||
|
|
@ -31,13 +31,13 @@ steps:
|
|||
method: "GET"
|
||||
|
||||
- id: normalize
|
||||
use: text.akoma_normalize@^0
|
||||
use: text.akoma-normalize@^0
|
||||
with:
|
||||
content: $pull.body
|
||||
mime: "application/xml"
|
||||
|
||||
- id: cohort
|
||||
use: stats.cohort_size@^0
|
||||
use: stats.cohort-size@^0
|
||||
with:
|
||||
cohort_id: $inputs.cohort_id
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# Minimal-Test: nur stats.cohort_size, ohne externe Calls.
|
||||
# Minimal-Test: nur stats.cohort-size, ohne externe Calls.
|
||||
# Beweist, dass meine Module mit dem Hub-ABI kompatibel sind.
|
||||
|
||||
name: test-cohort
|
||||
|
|
@ -8,7 +8,7 @@ inputs:
|
|||
|
||||
steps:
|
||||
- id: cohort
|
||||
use: stats.cohort_size@^0
|
||||
use: stats.cohort-size@^0
|
||||
with:
|
||||
cohort_id: $inputs.cohort_id
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +1,10 @@
|
|||
# .fai bundle sha256 (unsigned, chain pack 0.17.2; bundles include STORE.yaml/MODULE.md/icon)
|
||||
fdf4f6e369280fc91608d4e7de78cdd0d6d399a75512a10765b2c632df41bed2 text-akoma-normalize-0.1.0.fai
|
||||
c944d60f9a6a562dd6cbd03b9709a662a60c764a7ea81a1c98f2bd077e356d79 text-deontic-extract-0.1.0.fai
|
||||
e8d70e322f1df83ebaea36676ec42f27c26b4fac78eedf23499f25225318c9f4 graph-citation-extract-0.1.0.fai
|
||||
1427f101cf56ac58b1a10efc9a63e3e4cf2292841b214d533869b9504019bb73 text-readability-score-0.1.0.fai
|
||||
6bc1ee5862728d218f2e40060146099f05eb67cc9e9c4c7a2eec5928c0a0b6fe stats-cohort-size-0.1.0.fai
|
||||
93507cba5c4e819ce755f0e89cc79a4350363fb4aa96132cefd0eeb966b320a4 graph-shapley-attribution-0.1.0.fai
|
||||
57e6c6a855f6e542e1045a0c9b0c0d484a2e7297de084ae4d7865173771e7493 econ-skm-score-0.1.0.fai
|
||||
2781518744e6b1048216b2fc4b784ab3f18e55cb3fc9e77cb640e302b9ed7bb2 law-benefit-score-0.1.0.fai
|
||||
# .chain bundle sha256 (unsigned, chain pack 0.17.2; bundles include STORE.yaml/MODULE.md/icon)
|
||||
# capability IDs use the dash form (chain catalog charset [a-z0-9-]); repacked 2026-06-20.
|
||||
1c17771f632a5562534afc0e2420f8d05009cd988bf05899e8d53b3e550bf826 text-akoma-normalize-0.1.0.chain
|
||||
decf49eb8098a202ab858e868b122620eb55b58e2cc464ba0bbb61025defca4b text-deontic-extract-0.1.0.chain
|
||||
dd1e9bd7c45d29804f5ab4360f6ff9d8d2ab608299633dff438eaa5f81807463 graph-citation-extract-0.1.0.chain
|
||||
382d470f3243dd02b2da6f210fee9573f5ab64e9439358a74af34a0f8167a5b6 text-readability-score-0.1.0.chain
|
||||
321458faa4e8c7a2c016409052b00f89a22a3486c28ec4dccd3586426ef7037c stats-cohort-size-0.1.0.chain
|
||||
0d776294f86d8e397149efb18100543ea3951129780fed85ad9d1243ec146800 graph-shapley-attribution-0.1.0.chain
|
||||
dda50b045ab3b054fe71c81c8510a15e58a4da1a8218a7961e7b014854f0d125 econ-skm-score-0.1.0.chain
|
||||
4f02c2695640ba92fe7cd8dc263bcdd024ceeaa1c1ef29848286ec16135e0f50 law-benefit-score-0.1.0.chain
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
# Decision by chain 2026-06-19: Forgejo-raw is canonical (Studio was already
|
||||
# wired to it; reclaim publishes via plain `git push`, no SSH to the mirror).
|
||||
#
|
||||
# STATUS (2026-06-19). Per chain: publish UNSIGNED for now —
|
||||
# STATUS (2026-06-20). Per chain: publish UNSIGNED for now —
|
||||
# `require_signatures` is off by default; FAI_SIGNING_KEY untouched;
|
||||
# a Recl∆Im-own signing key + per-store pinning come later.
|
||||
# * sha256 — REAL, from local `chain pack` of each module.
|
||||
|
|
@ -13,25 +13,32 @@
|
|||
# in store/SHA256.txt. Bundles are UNSIGNED.
|
||||
# * signature — intentionally absent for now (see above).
|
||||
# * wasm_url — Forgejo raw URLs in this repo under bundles/.
|
||||
# Publish = commit store.yaml + bundles/*.fai and
|
||||
# Publish = commit store.yaml + bundles/*.chain and
|
||||
# `git push` to chain-modules/reclaim (main).
|
||||
#
|
||||
# NAMING NOTE (RESOLVED 2026-06-19 by chain): capability IDs are the
|
||||
# source of truth and the store `name:` must match the bundled
|
||||
# `provides.capability` EXACTLY (resolution is string-exact). The index
|
||||
# now uses the UNDERSCORE form (`econ.skm_score`) to match the modules.
|
||||
# Dashes are valid in capability IDs in general (e.g. the SPARK bridge
|
||||
# uses `document.formal-check`) — but the index must mirror the manifest.
|
||||
# NAMING NOTE (2026-06-20): capability IDs are the source of truth and the
|
||||
# store `name:` must match the bundled `provides.capability` EXACTLY
|
||||
# (resolution is string-exact). chain's catalog charset (`naming.rs`
|
||||
# `check_segment`, `capability-namespaces.yaml`) allows only `[a-z0-9-]`
|
||||
# per dot-segment — NO underscore. So all 8 modules were repacked with the
|
||||
# DASH form (`econ.skm-score`, `law.benefit-score`, …) and this index
|
||||
# mirrors that. (The `chain validate` lint enforces dash; pack/install do
|
||||
# not — but we conform to the catalog rather than rely on lax gates.)
|
||||
#
|
||||
# EXTENSION NOTE (2026-06-20): bundles use the `.chain` extension (current
|
||||
# convention, `bundle.rs` BUNDLE_EXT). Bundles are content-addressed by
|
||||
# sha256, so the extension is cosmetic and legacy `.fai` would also
|
||||
# install — but we match the current convention.
|
||||
|
||||
schema_version: 1
|
||||
|
||||
modules:
|
||||
- name: text.akoma_normalize
|
||||
- name: text.akoma-normalize
|
||||
versions:
|
||||
- version: 0.1.0
|
||||
status: published
|
||||
wasm_url: https://git.flemming.ai/chain-modules/reclaim/raw/branch/main/bundles/text-akoma-normalize-0.1.0.fai
|
||||
sha256: fdf4f6e369280fc91608d4e7de78cdd0d6d399a75512a10765b2c632df41bed2
|
||||
wasm_url: https://git.flemming.ai/chain-modules/reclaim/raw/branch/main/bundles/text-akoma-normalize-0.1.0.chain
|
||||
sha256: 1c17771f632a5562534afc0e2420f8d05009cd988bf05899e8d53b3e550bf826
|
||||
tagline:
|
||||
en: "Normalize legal documents to Akoma Ntoso"
|
||||
de: "Rechtsdokumente nach Akoma Ntoso normalisieren"
|
||||
|
|
@ -43,12 +50,12 @@ modules:
|
|||
license: Apache-2.0
|
||||
repository: https://git.flemming.ai/chain-modules/text-akoma-normalize
|
||||
|
||||
- name: text.deontic_extract
|
||||
- name: text.deontic-extract
|
||||
versions:
|
||||
- version: 0.1.0
|
||||
status: published
|
||||
wasm_url: https://git.flemming.ai/chain-modules/reclaim/raw/branch/main/bundles/text-deontic-extract-0.1.0.fai
|
||||
sha256: c944d60f9a6a562dd6cbd03b9709a662a60c764a7ea81a1c98f2bd077e356d79
|
||||
wasm_url: https://git.flemming.ai/chain-modules/reclaim/raw/branch/main/bundles/text-deontic-extract-0.1.0.chain
|
||||
sha256: decf49eb8098a202ab858e868b122620eb55b58e2cc464ba0bbb61025defca4b
|
||||
tagline:
|
||||
en: "Extract duties, prohibitions and permissions from norms"
|
||||
de: "Pflichten, Verbote und Erlaubnisse aus Normen extrahieren"
|
||||
|
|
@ -60,12 +67,12 @@ modules:
|
|||
license: Apache-2.0
|
||||
repository: https://git.flemming.ai/chain-modules/text-deontic-extract
|
||||
|
||||
- name: graph.citation_extract
|
||||
- name: graph.citation-extract
|
||||
versions:
|
||||
- version: 0.1.0
|
||||
status: published
|
||||
wasm_url: https://git.flemming.ai/chain-modules/reclaim/raw/branch/main/bundles/graph-citation-extract-0.1.0.fai
|
||||
sha256: e8d70e322f1df83ebaea36676ec42f27c26b4fac78eedf23499f25225318c9f4
|
||||
wasm_url: https://git.flemming.ai/chain-modules/reclaim/raw/branch/main/bundles/graph-citation-extract-0.1.0.chain
|
||||
sha256: dd1e9bd7c45d29804f5ab4360f6ff9d8d2ab608299633dff438eaa5f81807463
|
||||
tagline:
|
||||
en: "Build typed citation graphs from legal text"
|
||||
de: "Typisierte Zitationsgraphen aus Rechtstext bauen"
|
||||
|
|
@ -77,12 +84,12 @@ modules:
|
|||
license: Apache-2.0
|
||||
repository: https://git.flemming.ai/chain-modules/graph-citation-extract
|
||||
|
||||
- name: text.readability_score
|
||||
- name: text.readability-score
|
||||
versions:
|
||||
- version: 0.1.0
|
||||
status: published
|
||||
wasm_url: https://git.flemming.ai/chain-modules/reclaim/raw/branch/main/bundles/text-readability-score-0.1.0.fai
|
||||
sha256: 1427f101cf56ac58b1a10efc9a63e3e4cf2292841b214d533869b9504019bb73
|
||||
wasm_url: https://git.flemming.ai/chain-modules/reclaim/raw/branch/main/bundles/text-readability-score-0.1.0.chain
|
||||
sha256: 382d470f3243dd02b2da6f210fee9573f5ab64e9439358a74af34a0f8167a5b6
|
||||
tagline:
|
||||
en: "Composite readability and complexity score"
|
||||
de: "Komposit-Score für Lesbarkeit und Komplexität"
|
||||
|
|
@ -94,12 +101,12 @@ modules:
|
|||
license: Apache-2.0
|
||||
repository: https://git.flemming.ai/chain-modules/text-readability-score
|
||||
|
||||
- name: stats.cohort_size
|
||||
- name: stats.cohort-size
|
||||
versions:
|
||||
- version: 0.1.0
|
||||
status: published
|
||||
wasm_url: https://git.flemming.ai/chain-modules/reclaim/raw/branch/main/bundles/stats-cohort-size-0.1.0.fai
|
||||
sha256: 6bc1ee5862728d218f2e40060146099f05eb67cc9e9c4c7a2eec5928c0a0b6fe
|
||||
wasm_url: https://git.flemming.ai/chain-modules/reclaim/raw/branch/main/bundles/stats-cohort-size-0.1.0.chain
|
||||
sha256: 321458faa4e8c7a2c016409052b00f89a22a3486c28ec4dccd3586426ef7037c
|
||||
tagline:
|
||||
en: "Resolve addressee cohort sizes"
|
||||
de: "Größe von Adressaten-Kohorten ermitteln"
|
||||
|
|
@ -111,12 +118,12 @@ modules:
|
|||
license: Apache-2.0
|
||||
repository: https://git.flemming.ai/chain-modules/stats-cohort-size
|
||||
|
||||
- name: graph.shapley_attribution
|
||||
- name: graph.shapley-attribution
|
||||
versions:
|
||||
- version: 0.1.0
|
||||
status: published
|
||||
wasm_url: https://git.flemming.ai/chain-modules/reclaim/raw/branch/main/bundles/graph-shapley-attribution-0.1.0.fai
|
||||
sha256: 93507cba5c4e819ce755f0e89cc79a4350363fb4aa96132cefd0eeb966b320a4
|
||||
wasm_url: https://git.flemming.ai/chain-modules/reclaim/raw/branch/main/bundles/graph-shapley-attribution-0.1.0.chain
|
||||
sha256: 0d776294f86d8e397149efb18100543ea3951129780fed85ad9d1243ec146800
|
||||
tagline:
|
||||
en: "Shapley-style attribution on weighted graphs"
|
||||
de: "Shapley-Attribution auf gewichteten Graphen"
|
||||
|
|
@ -128,12 +135,12 @@ modules:
|
|||
license: Apache-2.0
|
||||
repository: https://git.flemming.ai/chain-modules/graph-shapley-attribution
|
||||
|
||||
- name: econ.skm_score
|
||||
- name: econ.skm-score
|
||||
versions:
|
||||
- version: 0.1.0
|
||||
status: published
|
||||
wasm_url: https://git.flemming.ai/chain-modules/reclaim/raw/branch/main/bundles/econ-skm-score-0.1.0.fai
|
||||
sha256: 57e6c6a855f6e542e1045a0c9b0c0d484a2e7297de084ae4d7865173771e7493
|
||||
wasm_url: https://git.flemming.ai/chain-modules/reclaim/raw/branch/main/bundles/econ-skm-score-0.1.0.chain
|
||||
sha256: dda50b045ab3b054fe71c81c8510a15e58a4da1a8218a7961e7b014854f0d125
|
||||
tagline:
|
||||
en: "Standard Cost Model (SKM) bureaucracy cost"
|
||||
de: "Standardkostenmodell (SKM) — Bürokratiekosten"
|
||||
|
|
@ -145,12 +152,12 @@ modules:
|
|||
license: Apache-2.0
|
||||
repository: https://git.flemming.ai/chain-modules/econ-skm-score
|
||||
|
||||
- name: law.benefit_score
|
||||
- name: law.benefit-score
|
||||
versions:
|
||||
- version: 0.1.0
|
||||
status: published
|
||||
wasm_url: https://git.flemming.ai/chain-modules/reclaim/raw/branch/main/bundles/law-benefit-score-0.1.0.fai
|
||||
sha256: 2781518744e6b1048216b2fc4b784ab3f18e55cb3fc9e77cb640e302b9ed7bb2
|
||||
wasm_url: https://git.flemming.ai/chain-modules/reclaim/raw/branch/main/bundles/law-benefit-score-0.1.0.chain
|
||||
sha256: 4f02c2695640ba92fe7cd8dc263bcdd024ceeaa1c1ef29848286ec16135e0f50
|
||||
tagline:
|
||||
en: "7-dimensional regulatory benefit score"
|
||||
de: "7-dimensionaler Nutzen-Score für Regulierung"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue