Metadata-Version: 2.4
Name: aker-build
Version: 0.1.0
Summary: CLI-first SaaS Build Kernel — scan, gate, queue, and route the next safest task
Project-URL: Homepage, https://github.com/Kemetra/Aker-Build
Project-URL: Issues, https://github.com/Kemetra/Aker-Build/issues
License: MIT
Keywords: architecture,cli,code-review,saas,static-analysis
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# aker-build

Build SaaS with AI agents without losing architecture control.

Aker Build scans a repository, runs SaaS gates over what it finds, derives a queue, and
routes the one next-safest task along with the exact files that task may touch. It
reports; it never mutates your code, commits, merges, or executes an agent.

## Install

```bash
pip install aker-build
aker check .
```

**The package is `aker-build`; the command is `aker`.**

## Requirements

Node.js 22.13 or newer must be on your PATH. The engine is a single compiled
JavaScript bundle shipped inside this wheel — there is no separate download, but the
Node runtime itself is not bundled. Install it from [nodejs.org](https://nodejs.org).

## Scope your scan first

Detectors read code that *looks* like a vulnerability, and a security-adjacent test
suite is full of deliberately-unsafe examples. Create `aker-build.config.json` at your
repo root before the first real run:

```json
{
  "version": 1,
  "paths": {
    "exclude": ["**/tests/**", "**/*.test.ts", "fixtures/**", "examples/**"]
  }
}
```

## Links

- [Source and documentation](https://github.com/Kemetra/Aker-Build)
- [Issues](https://github.com/Kemetra/Aker-Build/issues)
