Skip to main content
ClaudeWave
Skill2.4k estrellas del repoactualizado today

hyperflow-scaffold

Hyperflow-scaffold initializes the hyperflow project management system by creating the `.hyperflow/` cache directory with memory stubs (decisions, learnings, pitfalls, patterns), task and spec folders, context files documenting the project's stack and conventions, and installing seven hyperflow slash commands into `.agent/workflows/`. Use this skill once per project to set up hyperflow's infrastructure without triggering the spec-to-dispatch workflow chain.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/jeremylongshore/claude-code-plugins-plus-skills /tmp/hyperflow-scaffold && cp -r /tmp/hyperflow-scaffold/plugins/ai-agency/hyperflow/templates/antigravity/skills/hyperflow-scaffold ~/.claude/skills/hyperflow-scaffold
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# hyperflow-scaffold — project setup (Antigravity single-agent)

One-shot setup of hyperflow's project surfaces. Follow the `hyperflow` doctrine.

## Steps

1. **Create the `.hyperflow/` cache** at the repo root if absent:
   - `.hyperflow/memory/` with `decisions.md`, `learnings.md`, `pitfalls.md`, `patterns.md` (empty stubs, each with a one-line header).
   - `.hyperflow/tasks/`, `.hyperflow/specs/`, `.hyperflow/audits/` (empty dirs).
2. **Write context files** (`.hyperflow/profile.md`, `architecture.md`, `conventions.md`) by reading the repo: stack, top-level layout, test/lint conventions, commit conventions. Keep each short and factual.
3. **Install project slash commands**: copy the seven `hyperflow*` workflow files into `<repo>/.agent/workflows/` (so `/hyperflow`, `/hyperflow-spec`, … resolve in Antigravity's `/` menu). Source: the `templates/antigravity/workflows/` shipped with hyperflow.
4. **Note** that global hyperflow skills live in `~/.gemini/config/skills/` (auto-trigger) and global rules in `~/.gemini/AGENTS.md`.
5. Print a one-line summary of what was created. Do NOT start the chain.

## Rules

- Idempotent — never clobber existing `.hyperflow/` content; only create what's missing.
- `.hyperflow/tasks` and `.hyperflow/specs` are runtime artefacts; `.hyperflow/memory` is durable and worth committing.