Skip to content
Browse docs

Using Specs as Inputs

The spec library is still a core surface of the project. The difference now is that the companion is the front door and the specs are one of the things it can work on directly.

What a spec is

Each spec in /specs is a build plan for a GRC automation tool. The file describes:

  • APIs
  • auth
  • controls and mappings
  • architecture
  • CLI shape
  • build sequence
  • current status

Use a repo-local spec directly

grclanker "read specs/aws-sec-inspector.spec.md and build the tool"

Use any agent or interface

If you are not using grclanker directly, the examples below show the same spec handoff pattern across terminal agents, IDE agents, chat UIs, and simple programmatic flows.

Browse the raw catalog

  • Site catalog: /specs
  • Raw base: https://raw.githubusercontent.com/hackIDLE/grclanker/main/specs

Why this matters

This is the bridge between the older “spec-only” site and the companion-first product shape. You no longer need to treat the specs as a separate product line. Install grclanker, then point it at the spec you want to execute against.

Use With Any Agent

Copy a command. Paste it into whatever you use.

Terminal Agents
Claude Code claude "Read ...spec.md and build the tool"
Codex CLI codex "Read ...spec.md and build the tool"
Gemini CLI gemini "Read ...spec.md and implement this spec"
OpenCode opencode -p "Read ...spec.md and build the tool"
Droid droid exec "Read ...spec.md and build the tool"
Pi pi "Read ...spec.md and build the tool"
Goose goose "Read ...spec.md and build the tool"
Amp amp "Read ...spec.md and build the tool"
Crush crush "Read ...spec.md and build the tool"
IDE Agents
Cursor / Windsurf @file aws-sec-inspector.spec.md "Implement this spec"
GitHub Copilot @workspace #file:aws-sec-inspector.spec.md implement this spec
Cline / Roo Code Paste the raw URL into the chat
Any Chat Interface
Claude.ai / ChatGPT / Gemini Here's a spec: ...spec.md — Build me the Go CLI tool.
Programmatic
Pipe to any LLM curl -s ...spec.md | your-agent "Build this"
Clone all specs git clone https://github.com/hackIDLE/grclanker.git
URL copied to clipboard