Metadata-Version: 2.5
Name: vf-hive-gen
Version: 0.7.0
Summary: Generate OKF concept cards from a prepared reference corpus
Project-URL: Homepage, https://github.com/voyagerforge-dev/hive-intelligence
Project-URL: Documentation, https://github.com/voyagerforge-dev/hive-intelligence/blob/main/docs/reference/hive-gen.md
Project-URL: Source, https://github.com/voyagerforge-dev/hive-intelligence
Project-URL: Issues, https://github.com/voyagerforge-dev/hive-intelligence/issues
Project-URL: Release notes, https://github.com/voyagerforge-dev/hive-intelligence/releases
License-Expression: Apache-2.0
License-File: LICENSE
License-File: NOTICE
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Documentation
Classifier: Topic :: Text Processing :: Markup :: Markdown
Requires-Python: >=3.12
Requires-Dist: boto3>=1.35
Requires-Dist: httpx>=0.27
Requires-Dist: pydantic-settings>=2.5
Requires-Dist: pydantic>=2.9
Requires-Dist: pyyaml>=6.0
Provides-Extra: dev
Requires-Dist: hatchling>=1.25; extra == 'dev'
Requires-Dist: pytest>=8.3; extra == 'dev'
Requires-Dist: respx>=0.21; extra == 'dev'
Requires-Dist: ruff>=0.7; extra == 'dev'
Description-Content-Type: text/markdown

# hive-gen

Atomic markdown to reviewed concept cards. Stage 2, and the card model.

[![PyPI](https://img.shields.io/pypi/v/vf-hive-gen.svg)](https://pypi.org/project/vf-hive-gen/)
[![Licence: Apache 2.0](https://img.shields.io/badge/licence-Apache--2.0-blue.svg)](https://github.com/voyagerforge-dev/hive-intelligence/blob/main/LICENSE)

Part of [Hive Intelligence](https://github.com/voyagerforge-dev/hive-intelligence), which turns a body of documentation into
reviewed, git-versioned concept cards and serves them to any MCP or REST client - no vector
index, no embeddings, and no model call at serving time.

**Full documentation: [docs/reference/hive-gen.md](https://github.com/voyagerforge-dev/hive-intelligence/blob/main/docs/reference/hive-gen.md)**, which covers the command
surface, configuration, behaviour and the things that catch people out.

## Install

```bash
pip install vf-hive-gen
python -m hivegen.run
```

Installing also puts the eight `hivegen-*` card commands (conformance, index, issue parsing, memory
and correction lint, conflict scoring and the PR gate) on the path; the reference doc lists them.

## From source

```bash
cd tooling/hive-gen
uv sync --extra dev     # install
uv run pytest -q        # test
uv run python -m hivegen.run
```

This file is deliberately short. Everything else lives in the reference doc, so there is one
place to keep current rather than two that drift apart.
