goga-cell-go

goga-cell-go is a skill for Claude Code, Codex from qarium/goga. It costs 14 tokens per session (946 once invoked), scanned A, original, BSD-3-Clause.

A set of Go programming rules for implementing CODEMANIFEST contracts, which are structured descriptions of a cell's code interface. It covers imports, usages, annotations, method signatures, file locations, and error-return conventions.

In plain words
What is it for?
Use it when implementing Go cells, including deciding where functions belong, documenting their behavior, applying shared query patterns, and writing table-driven tests for exported functions and methods.
Why use it?
It gives Go implementations consistent expectations for structure, naming, errors, and tests. This reduces ambiguity when turning a contract into source files.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when implementing Go cells, including deciding where functions belong, documenting their behavior, applying shared query patterns, and writing table-driven tests for exported functions and methods.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/qarium/goga/goga-cell-go
View source ↗ qarium/goga
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.

Any agent
npx skills add qarium/goga --skill goga-cell-go
Clone the repo
git clone --depth 1 https://github.com/qarium/goga

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for goga-cell-go

README.md
[![agentmods](https://agentmods.dev/badge/skills/qarium/goga/goga-cell-go/github.svg)](https://agentmods.dev/skills/qarium/goga/goga-cell-go)
Your own site
<a href="https://agentmods.dev/skills/qarium/goga/goga-cell-go"><img src="https://agentmods.dev/badge/skills/qarium/goga/goga-cell-go/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for goga-cell-go

Your own site · 80×15
<a href="https://agentmods.dev/skills/qarium/goga/goga-cell-go"><img src="https://agentmods.dev/badge/skills/qarium/goga/goga-cell-go.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 14 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 946 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00014 $0.00946
Opus 5 $0.00007 $0.00473
Sonnet 5 $0.00003 $0.00189
Haiku 4.5 $0.00001 $0.00095

Measured 11d ago against content hash 28662344e598, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

goga-cell-go 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 11d 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.

goga/assets/skills/goga-cell-go/SKILL.md · 159 lines

How it starts

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

Golang: Contract Implementation Rules

Language skill for Golang.

Apply this specification within the calling skill's context. Do not paraphrase the contents — use them to drive decisions.

Invoked through the goga-lang-disp router.


Examples

A complete CODEMANIFEST example for Go with all DSL constructs:

Imports:
  - Types:
      - BaseModel
      - RepositoryConfig AS Config
    Usages:
      - query_patterns
    From: path/to/storage_cell

Usages:
  conventions: .goga/usages/go_conventions.md
  pattern: |
    Follow Go idioms: return errors as last return value, use interfaces for abstraction.
  testing: |
    Table-driven tests required for all exported functions and methods.

Annotations: |
  Use `conventions` for code style.
  Use `testing` for test requirements.
  Use `query_patterns` from Imports for database query patterns.

  All methods returning errors must follow `(result, error)` pattern.

---

"ParseInput(input string) -> data:[]byte":
  location: parser.go
  annotations: |
    Parse raw input string into structured data.

    `input`: raw string to parse

    Use `pattern` for implementation.

"Server(host string)":
  location: server.go
  annotations: |
    HTTP server with configurable host.

    `host`: server hostname

    Use `query_patterns` from Imports for request handling.
    Use `conventions` for code style.
  properties:
    "Host -> string": |
      Server hostname.
    "Port -> int64": |
      Server port number.
  methods:
    "HandleRequest(req Request) -> resp:Response, err:error": |
      Handle incoming HTTP request.

      `req`: incoming request
      `resp`: response to send
      `err`: error if request handling fails

      Use `pattern` for implementation.
    "Shutdown() -> err:error": |
      Gracefully shut down the server.
      `err`: error if shutdown fails.

"BaseModel::Repository(db DB)":
  location: repository.go
  annotations: |
    Repository extending BaseModel with database operations.

    `db`: database connection

    Use `query_patterns` from Imports for query construction.

->BaseModel: {}

---

Author: Goga
CreatedAt: 22/05/26
Description: |
  Example CODEMANIFEST demonstrating all DSL constructs for Go.

Read the full file on GitHub · 159 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. 11d ago First seen · 159 lines · 14 tokens per session scan A 28662344e598

Subscribe to this mod's changes

goga-cell-go is a skill published in the GitHub repository qarium/goga (29 stars, last pushed 3d ago), licensed BSD-3-Clause. It adds 14 tokens to every session and 946 once invoked, about $0.0001 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 skills, from other repositories

typescript-strict

TypeScript strict mode patterns with interfaces, type guards, generics, and utility types. Use when defining types, creating type-safe functions, handling nullable values, or implementing generic components.

BlackBeltTechnology/pi-agent-dashboard · 41 tokens

concept-teaching

A guided teaching workflow for learning one programming concept at a time in Python, Go, or the code you are working on. TDD means test-driven development, but this description does not say that the add-on teaches TDD.

yyz666ai/Learning-Agent · 38 tokens

learning-plan

A Chinese-language planning tool for creating or adjusting short, practical learning routes for Python, Go, mixed-language, or goal-focused programming study.

yyz666ai/Learning-Agent · 29 tokens

exercise-coach

A coaching guide for people completing Python, Go, or code-reading exercises. It gives the smallest useful hint first and increases help only when needed.

yyz666ai/Learning-Agent · 37 tokens

agent-booster

WASM-based instant code transforms for simple tasks, achieving 352x speedup over LLM inference with zero cost.

a5c-ai/babysitter · 28 tokens

doubt-driven-review

In-flight adversarial check on a non-trivial decision BEFORE it stands — distinct from post-hoc review of a finished diff. Use on "stress-test this decision", "are we sure about this", "verify before commit", "poke holes in this", when working in unfamiliar code, or before an irreversible step (migration, prod deploy…

BlackBeltTechnology/pi-agent-dashboard · 90 tokens