Aihaus Flow banner
overdrive-dev overdrive-dev

Aihaus Flow

Development community

Description

Intent-based, autonomous developer workflows for Claude Code

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

aihaus

aihaus gives coding agents a shared, repository-local way to understand a project, plan work, preserve decisions, and prove that a task is complete. It installs as ordinary files in your Git repository, so the workflow travels with the code and remains reviewable by your team.

Use aihaus when you want an agent to:

  • follow project rules and prior decisions instead of starting from scratch;
  • route feature, bug-fix, and research work through a consistent workflow;
  • keep durable project memory in versioned Markdown;
  • support completion claims with executable evidence;
  • work without sending project memory to an aihaus service.

There is no aihaus account, website, hosted control plane, or cloud memory. The portable workflow is a repository-local package. Thin repository-local Claude Code and Codex skills expose its initialization routine without turning aihaus into a global runtime, plugin, or user-level installation.

Requirements

  • a Git repository;
  • Git available on the command line;
  • Node.js 22 or newer with npm;
  • a released aihaus tag for a reproducible installation.

Run installation commands from the root of the repository that will use aihaus.

Repository-local commands by host

This README documents the provider-neutral repository-local package.

Host Repository-local adapter Initialization
Claude Code .claude/skills/aih-refresh/SKILL.md /aih-refresh
Codex .agents/skills/aih-refresh/SKILL.md $aih-refresh, or discover it through /skills
Grok or another coding agent No host adapter required node .aihaus/tools/refresh.mjs --repo . --json

The exact custom slash form `/aih-refresh` is a Claude Code capability; Codex does not expose repository skills through that spelling. The old global `/aih-env` and multi-command Claude suite are not installed. aihaus does not add global hooks or change user settings. Older documentation paths such as `.aihaus/project.md` do not apply to this pack