Metadata-Version: 2.4
Name: wikimason
Version: 0.1.0
Summary: Filesystem-backed CLI toolkit for building and maintaining an LLM wiki.
Author: WikiMason Contributors
Maintainer: Holger Nahrstaedt
License-Expression: MIT
Project-URL: Homepage, https://github.com/holgern/wikimason
Project-URL: Repository, https://github.com/holgern/wikimason
Project-URL: Issues, https://github.com/holgern/wikimason/issues
Project-URL: Changelog, https://github.com/holgern/wikimason/releases
Keywords: markdown,wiki,llm,cli,knowledge-management,obsidian,logseq
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typer
Requires-Dist: click
Requires-Dist: PyYAML
Requires-Dist: rapidfuzz
Requires-Dist: fuzzysearch
Requires-Dist: tomli>=2; python_version < "3.11"
Provides-Extra: dev
Requires-Dist: build; extra == "dev"
Requires-Dist: mypy; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-xdist; extra == "dev"
Requires-Dist: ruff; extra == "dev"
Requires-Dist: twine; extra == "dev"
Requires-Dist: types-PyYAML; extra == "dev"
Provides-Extra: rich
Requires-Dist: rich; extra == "rich"
Dynamic: license-file

[![PyPI - Version](https://img.shields.io/pypi/v/wikimason)](https://pypi.org/project/wikimason/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/wikimason)
![PyPI - Downloads](https://img.shields.io/pypi/dm/wikimason)
[![codecov](https://codecov.io/gh/holgern/wikimason/graph/badge.svg?token=mbFq4CJ9Uj)](https://codecov.io/gh/holgern/wikimason)

# WikiMason

Filesystem-backed CLI toolkit for building and maintaining an LLM wiki with
Obsidian, Markdown, or generic tool profiles.

## Install

```bash
python -m pip install -e '.[dev]'
```

## Commands

```bash
wikimason --help
wikimason vault doctor --format json
wikimason source scan --update --format json
wikimason source delta --format json
wikimason file list Wiki --format json
wikimason daily read --format json
wikimason note new --kind topic --title "Compiled Knowledge" --source Raw/Sources/example.md --allow-incomplete --format json
wikimason links check --format json
wikimason ingest status --format json
wikimason ingest plan --format json
wikimason ingest finish --accept-covered --format json
wikimason agents compile --check --format json
```

## Migration note

Older starter-kit material may mention `scripts/wiki_tool.py`; that file is not part of WikiMason. Use the WikiMason commands in this README instead.

## Key design constraints

1. Single package at repository root (`wikimason/`), no `src/` layout.
2. Single project skill at `skills/wikimason/SKILL.md`.
3. Deterministic filesystem-backed command groups for wiki, file, daily, property, task, template, text, and link operations.
4. `AGENTS.md` is compiled from `Schema/` plus command/template metadata.
5. Runtime bridge commands are not part of the product surface.
