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 Codeclaude "Read ...spec.md and build the tool"
Codex CLIcodex "Read ...spec.md and build the tool"
Gemini CLIgemini "Read ...spec.md and implement this spec"
OpenCodeopencode -p "Read ...spec.md and build the tool"
Droiddroid exec "Read ...spec.md and build the tool"
Pipi "Read ...spec.md and build the tool"
Goosegoose "Read ...spec.md and build the tool"
Ampamp "Read ...spec.md and build the tool"
Crushcrush "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 CodePaste the raw URL into the chat
Any Chat Interface
Claude.ai / ChatGPT / GeminiHere's a spec: ...spec.md — Build me the Go CLI tool.
Programmatic
Pipe to any LLMcurl -s ...spec.md | your-agent "Build this"
Clone all specsgit clone https://github.com/hackIDLE/grclanker.git
URL copied to clipboard