An open API service indexing awesome lists of open source software.

https://github.com/srdjan/gh-aw-init

Interactive CLI wizard for installing aw-pack agentic workflows - auto-detects your project, prompts for policies, generates customized workflows
https://github.com/srdjan/gh-aw-init

agentic-workflow ai-agents github

Last synced: about 9 hours ago
JSON representation

Interactive CLI wizard for installing aw-pack agentic workflows - auto-detects your project, prompts for policies, generates customized workflows

Awesome Lists containing this project

README

          

# gh-aw-init

Interactive setup wizard for [aw-pack](https://github.com/srdjan/aw-pack) agentic workflows. Scans your repository, detects your ecosystem, prompts for project-specific policies, and generates customized GitHub Agentic Workflow files.

## Install

```
gh extension install srdjan/gh-aw-init
```

Requires [gh](https://cli.github.com/) and [gh-aw](https://github.com/github/gh-aw) (`gh extension install github/gh-aw`).

## Usage

Interactive setup with auto-detection and progressive disclosure:

```
cd my-project
gh aw-init
```

Non-interactive setup accepting all defaults:

```
gh aw-init --yes
gh aw-init --yes --engine copilot
```

## What It Does

1. **Scans** your repository to detect ecosystem (Deno, Node, Rust, Go, Python, Ruby), build/test/lint commands, project structure, and git remote info
2. **Prompts** for policies: which workflows to install, AI engine, behavior aggressiveness, architecture description, coding conventions, component labels, off-limits paths
3. **Generates** customized `repo-context.md` and workflow `.md` files with trimmed bash allowlists and rate limits matching your chosen behavior policy
4. **Compiles** workflows via `gh aw compile` to produce GitHub Actions YAML

## Workflows

| Workflow | Trigger | What it does |
|---|---|---|
| Issue Triage | Issue opened | Labels issues, posts triage comment |
| PR Review | PR opened/updated | Reviews code, runs tests, submits review |
| Weekly Status | Monday schedule | Creates weekly summary issue |
| Doc Sync | Push to main | Opens draft PR if docs are stale |
| Repo Assist | Daily + `/repo-assist` | Maintenance: stale PRs, welcomes, CI fixes |

## Documentation

See the [User Guide](docs/guide.md) for a complete walkthrough with terminal screenshots of every phase, behavior policy details, ecosystem support, and troubleshooting.

## Development

```
deno task dev # run the wizard locally
deno task check # type-check
deno task compile # build local binary
```

## License

MIT