go-architecture

A set of Cursor rules for structuring and developing Go applications using layered architecture, domain-focused design, and Go-specific practices.

In plain words
What is it for?
It helps organize Go projects into areas such as domain, use cases, interfaces, and infrastructure; apply dependency injection; and follow code-quality and design principles.
Why use it?
It gives developers consistent guidance for separating business logic from frameworks and infrastructure, which can make a codebase easier to maintain.

Cursor rule for Cursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/freepeak/cortex/go-architecture
Clone the repo
git clone --depth 1 https://github.com/FreePeak/cortex

Made for: Cursor.

Per session 1,789 This file is loaded in full into every session.
When invoked 1,789 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.01789 $0.01789
Opus 5 $0.00894 $0.00894
Sonnet 5 $0.00358 $0.00358
Haiku 4.5 $0.00179 $0.00179

Measured 2d ago against content hash d0376f9fb01f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

go-architecture scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/rules/go-architecture.mdc · 249 lines

How it starts

The opening of the file, as written. The whole thing — 249 lines — stays where its author put it; the contents beside it link to each section on GitHub.

IDE Cursor Rules for Golang Development

Architecture & Structure

  1. Clean Architecture

    • Maintain clear separation between layers: domain, repository, usecase, handler
    • Follow dependency rule: inner layers must not depend on outer layers
    • Domain entities should not have dependencies on frameworks or external libraries
    • Use dependency injection for infrastructure dependencies
  2. Project Structure

root/ ├── cmd │   ├── app │   └── tools ├── config ├── documents ├── internal │   ├── domain │   │   ├── authentication │   │   ├── shared │   │   │   ├── errors │   │   │   └── valueobjects │   │   └── user │   ├── infrastructure │   │   ├── background │   │   ├── db │   │   │   ├── migrations │   │   │   └── repository │   │   ├── file_storage │   │   ├── filestorage │   │   ├── logging │   │   ├── server │   │   └── temporal │   ├── interfaces │   │   ├── persistence │   │   └── rest │   ├── middleware │   ├── shared │   └── usecases ├── pkg │   └── utils


3. **Domain-Driven Design**
- Model domain entities around business concepts
- Use value objects for immutable concepts
- Implement aggregate roots to maintain consistency boundaries
- Define repository interfaces in the domain layer
- Keep business logic in domain entities or domain services

## Code Quality Principles

4. **SOLID Principles**
- **Single Responsibility**: Each struct/function should have only one reason to change
- **Open/Closed**: Extend behavior through interfaces rather than modification
- **Liskov Substitution**: Interface implementations must be substitutable
- **Interface Segregation**: Prefer small, focused interfaces (1-3 methods)
- **Dependency Inversion**: Depend on abstractions, not concrete implementations

5. **DRY (Don't Repeat Yourself)**
- Extract common functionality into shared packages
- Use middleware for cross-cutting concerns
- Create utility functions for repeated operations
- Implement generic repository patterns where appropriate

Read the full file on GitHub · 249 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 249 lines · 1,789 tokens per session scan A d0376f9fb01f

Subscribe to this mod's changes

go-architecture is a cursor rule published in the GitHub repository FreePeak/cortex (25 stars, last pushed 1y ago), licensed Apache-2.0. It adds 1,789 tokens to every session, about $0.0089 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other cursor rules, from other repositories