gws-connector AGENTS.md

gws-connector AGENTS.md is an instructions file for Codex, OpenCode from orieg/gws-connector. It costs 922 tokens per session, scanned A, original, MIT.

Repository instructions for gws-connector, a Go server that connects coding agents to multiple Google Workspace accounts. It covers Gmail, Calendar, Drive, Sheets, Docs, OAuth, routing, builds, tests, and linting.

In plain words
What is it for?
Use them when editing the Go MCP server, working on Google Workspace integrations, building the project, formatting files, or running tests and lint checks.
Why use it?
They tell an agent how the project is organized and which commands and formatting rules keep changes valid.

Instructions file for CodexOpenCode

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 instructions/orieg/gws-connector/agents-md
Clone the repo
git clone --depth 1 https://github.com/orieg/gws-connector

Made for: Codex, OpenCode.

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 gws-connector AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/orieg/gws-connector/agents-md.svg)](https://agentmods.dev/instructions/orieg/gws-connector/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/orieg/gws-connector/agents-md"><img src="https://agentmods.dev/badge/instructions/orieg/gws-connector/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 922 This file is loaded in full into every session.
When invoked 922 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.00922 $0.00922
Opus 5 $0.00461 $0.00461
Sonnet 5 $0.00184 $0.00184
Haiku 4.5 $0.00092 $0.00092

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

Security

Grade A, and why

gws-connector AGENTS.md 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 4d 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.

AGENTS.md · 79 lines

How it starts

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

AGENTS.md

Guidance for AI coding agents (and humans) working in this repository. This follows the agents.md convention and complements CONTRIBUTING.md.

Note: CONTEXT.md is different — it is the runtime behavioral guide loaded by MCP clients that describes how to use the gws.* tools. This file describes how to develop the project.

What this project is

A multi-account Google Workspace MCP server in Go. It exposes Gmail, Calendar, Drive, Sheets, and Docs as MCP tools with per-account OAuth and label/email/domain routing. It ships as a Claude Code plugin, a Gemini CLI extension, and a plain MCP server over stdio.

Build, test, lint

make build          # build ./bin/gws-mcp
make test           # go test with -race (authoritative check)
make lint           # go vet
gofmt -w <files>    # ALWAYS gofmt Go files you edit

Always run make test and make lint before finishing a change. CI additionally runs govulncheck; keep dependencies patched.

Codebase map

Path Responsibility
cmd/gws-mcp/ Entrypoint; env vars; starts MCP server on stdio
internal/server/server.go Tool registration & dispatch — start here to add/change a tool
internal/services/ Gmail, Calendar, Drive, Sheets, Docs API handlers
internal/auth/ OAuth flows, token store (OS keychain + file fallback), client factory
internal/accounts/ Account registry (JSON) and routing resolution
skills/ Slash-command workflows (Claude Code + Gemini CLI)
hooks/, agents/ Claude Code session hooks and workspace-context agent
docs/ GitHub Pages landing page + privacy policy

Conventions

  • Tool naming: s.toolName("gws", "<group>", "<verb>"). The --use-dot-names flag switches between gws.mail.search and gws_mail_search — never hardcode a separator.
  • Tool annotations (required on every new tool):
    • Read-only (search/read/list/get): mcp.WithReadOnlyHintAnnotation(true)
    • Overwrites or deletes data (remove, sheets.write_range, docs.replace_text): mcp.WithDestructiveHintAnnotation(true)
    • Additive writes (create/insert draft/event/label/doc): omit both hints.
  • Account parameter: every service tool takes an optional account param (accountParam in each register*Tools). Preserve this.
  • Security: never log tokens or put them in error messages; state files are 0600, dirs 0700; validate params used in Google API queries.
  • Commits: Conventional Commits (feat(scope): …, fix(scope): …). Atomic.
  • Docs stay in sync: adding/changing a tool means updating the README tool table and, if it changes runtime behavior, CONTEXT.md.

Read the full file on GitHub · 79 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. 4d ago First seen · 79 lines · 922 tokens per session scan A 88d2b3fd2add

Subscribe to this mod's changes

gws-connector AGENTS.md is an instructions file published in the GitHub repository orieg/gws-connector (1 stars, last pushed 2d ago), licensed MIT. It adds 922 tokens to every session, about $0.0046 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-31.

Related

Other instructions, from other repositories