From 4d0acc2f2dbeebd1782cdc44224b502cbdd0ab34 Mon Sep 17 00:00:00 2001 From: Michael Zargham Date: Fri, 15 May 2026 15:24:44 -0400 Subject: [PATCH 1/2] =?UTF-8?q?rebrand:=20BlockScience=20=E2=86=92=20Dynam?= =?UTF-8?q?icalSystemsGroup=20URLs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates mkdocs site_url/repo_url, README clone+related-project links, and docs/{index,ontology}.md GitHub URLs to point at the renamed org. Co-Authored-By: Claude Opus 4.7 (1M context) --- README.md | 4 ++-- docs/index.md | 6 +++--- docs/ontology.md | 4 ++-- mkdocs.yml | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b3b03d6..e440778 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ pip install knowledgecomplex Or from source: ```bash -git clone https://github.com/BlockScience/knowledgecomplex.git +git clone https://github.com/DynamicalSystemsGroup/knowledgecomplex.git cd knowledgecomplex pip install -e ".[dev]" ``` @@ -219,7 +219,7 @@ See [ARCHITECTURE.md](ARCHITECTURE.md) for the full design rationale. ## Domain model example -This package is used by [mtg-kc](https://github.com/BlockScience/mtg-kc) as a demonstration application, and by [assurances-audits-accountability](https://github.com/BlockScience/assurances-audits-accountability) as a domain-specific knowledge complex for typed document assurance. +This package is used by [mtg-kc](https://github.com/DynamicalSystemsGroup/mtg-kc) as a demonstration application, and by [assurances-audits-accountability](https://github.com/DynamicalSystemsGroup/assurances-audits-accountability) as a domain-specific knowledge complex for typed document assurance. ## License diff --git a/docs/index.md b/docs/index.md index 45695c8..f165673 100644 --- a/docs/index.md +++ b/docs/index.md @@ -21,7 +21,7 @@ pip install knowledgecomplex Or from source: ```bash -git clone https://github.com/BlockScience/knowledgecomplex.git +git clone https://github.com/DynamicalSystemsGroup/knowledgecomplex.git cd knowledgecomplex pip install -e ".[dev]" ``` @@ -57,14 +57,14 @@ fig, ax = plot_hasse(kc) fig, ax = plot_geometric(kc) ``` -For building schemas from scratch, see [`examples/02_construction/`](https://github.com/blockscience/knowledgecomplex/tree/main/examples/02_construction). Three pre-built ontologies ship with the package: +For building schemas from scratch, see [`examples/02_construction/`](https://github.com/DynamicalSystemsGroup/knowledgecomplex/tree/main/examples/02_construction). Three pre-built ontologies ship with the package: ```python from knowledgecomplex.ontologies import operations, brand, research sb = brand.schema() # audience/theme with resonance, interplay, overlap ``` -See the [examples/](https://github.com/blockscience/knowledgecomplex/tree/main/examples) directory for 11 runnable examples. +See the [examples/](https://github.com/DynamicalSystemsGroup/knowledgecomplex/tree/main/examples) directory for 11 runnable examples. ## API Reference diff --git a/docs/ontology.md b/docs/ontology.md index 00716be..6d5d58d 100644 --- a/docs/ontology.md +++ b/docs/ontology.md @@ -24,8 +24,8 @@ These constraints use `sh:sparql` validators because they require cross-individu ## Interoperability -Because KC stores all data as standard RDF and enforces constraints via W3C SHACL, instance graphs are natively compatible with RDF-based model management systems such as [Flexo MMS](https://github.com/Open-MBEE/flexo-mms-deployment) from the [OpenMBEE](https://www.openmbee.org/) community. JSON-LD export (`dump_graph(format="json-ld")`) provides the primary bridge format. See the [Interoperability section of ARCHITECTURE.md](https://github.com/blockscience/knowledgecomplex/blob/main/ARCHITECTURE.md#interoperability-flexo-mms-and-openmbee) for integration patterns. +Because KC stores all data as standard RDF and enforces constraints via W3C SHACL, instance graphs are natively compatible with RDF-based model management systems such as [Flexo MMS](https://github.com/Open-MBEE/flexo-mms-deployment) from the [OpenMBEE](https://www.openmbee.org/) community. JSON-LD export (`dump_graph(format="json-ld")`) provides the primary bridge format. See the [Interoperability section of ARCHITECTURE.md](https://github.com/DynamicalSystemsGroup/knowledgecomplex/blob/main/ARCHITECTURE.md#interoperability-flexo-mms-and-openmbee) for integration patterns. ## Design rationale -See [ARCHITECTURE.md](https://github.com/blockscience/knowledgecomplex/blob/main/ARCHITECTURE.md) for the full 2x2 responsibility map and design decisions. +See [ARCHITECTURE.md](https://github.com/DynamicalSystemsGroup/knowledgecomplex/blob/main/ARCHITECTURE.md) for the full 2x2 responsibility map and design decisions. diff --git a/mkdocs.yml b/mkdocs.yml index bcd241d..89c2163 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,7 +1,7 @@ site_name: knowledgecomplex -site_url: https://blockscience.github.io/knowledgecomplex -repo_url: https://github.com/blockscience/knowledgecomplex -repo_name: blockscience/knowledgecomplex +site_url: https://dynamicalsystemsgroup.github.io/knowledgecomplex +repo_url: https://github.com/DynamicalSystemsGroup/knowledgecomplex +repo_name: DynamicalSystemsGroup/knowledgecomplex theme: name: material From 43b9fb3283c82bd6da66b0399456e132cc627035 Mon Sep 17 00:00:00 2001 From: Michael Zargham Date: Fri, 15 May 2026 15:27:54 -0400 Subject: [PATCH 2/2] fix: mtg-kc README link points to mzargham/mtg-kc, not org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The mtg-kc demonstration app lives on the maintainer's personal account, not under DynamicalSystemsGroup — corrects the over-eager rebrand of the previous commit. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e440778..2c35b23 100644 --- a/README.md +++ b/README.md @@ -219,7 +219,7 @@ See [ARCHITECTURE.md](ARCHITECTURE.md) for the full design rationale. ## Domain model example -This package is used by [mtg-kc](https://github.com/DynamicalSystemsGroup/mtg-kc) as a demonstration application, and by [assurances-audits-accountability](https://github.com/DynamicalSystemsGroup/assurances-audits-accountability) as a domain-specific knowledge complex for typed document assurance. +This package is used by [mtg-kc](https://github.com/mzargham/mtg-kc) as a demonstration application, and by [assurances-audits-accountability](https://github.com/DynamicalSystemsGroup/assurances-audits-accountability) as a domain-specific knowledge complex for typed document assurance. ## License