2026-06-08 01:05:40 +02:00
|
|
|
"""shard-wiki — Git-based Markdown wiki orchestrator and federation layer.
|
|
|
|
|
|
2026-06-15 10:12:38 +02:00
|
|
|
See INTENT.md for the authoritative specification of scope and boundaries, and
|
|
|
|
|
spec/CoreArchitectureBlueprint.md for the architecture. This package orchestrates
|
|
|
|
|
wiki-shaped content across heterogeneous *shards*; it is not itself a wiki engine.
|
|
|
|
|
|
|
|
|
|
Foundation slice (SHARD-WP-0007): attach folder shard(s) to an
|
|
|
|
|
:class:`~shard_wiki.space.InformationSpace`, resolve a name through the union, and
|
|
|
|
|
read a page with layered provenance (chorus on ambiguity).
|
2026-06-08 01:05:40 +02:00
|
|
|
"""
|
|
|
|
|
|
2026-06-15 10:12:38 +02:00
|
|
|
from shard_wiki.space import InformationSpace
|
|
|
|
|
|
2026-06-08 01:05:40 +02:00
|
|
|
__version__ = "0.0.0"
|
|
|
|
|
|
2026-06-15 10:12:38 +02:00
|
|
|
__all__ = ["__version__", "InformationSpace"]
|