Gstack
Agent package with an inference-based setup prompt.
[package]
name = "gstack"
version = "0.0.1"
authors = ["garrytan <garrytan@gmail.com>"]
license = "MIT"
repository = "https://github.com/crabtalk/gstack"
branch = "crabtalk"
keywords = ["agent", "stack"]
description = "garrytan's AI engineering workflow agent powered by crabtalk"
[package.setup]
prompt = "setup.md"
[agents.garrytan]
description = "AI engineering workflow agent — suggests the right skill at the right time"
thinking = true
What’s happening
[package]— Uses the optionalversion,authors,license, andbranchfields.branch = "crabtalk"tells the installer to clone that specific branch instead of the repo default.[package.setup]— The prompt variant.setup.mdis read from the repo root and sent to the daemon for inference. This is useful for interactive setup that requires the agent’s help (e.g., configuring API keys).[agents.garrytan]— Declares an agent withthinking = truefor reasoning mode. The prompt file is discovered by convention atagents/garrytan.mdin the source repo.