Armory
Source

Browse

Search and filter by type across the catalog

1,904 results in Sub-Agents, CLAUDE.md / Rules, Workflows · page 31 of 80

CLAUDE.md / RulesPreview

go

Idiomatic Go rules. Explicit error handling, interface-based design, context-first concurrency.

UnrankedNo signals yet
Harnessclaudecursor
cursor-rulesclaude-md-filesrules
Details
CLAUDE.md / RulesPreview

go-backend-scalability-cursorrules-prompt-file

Cursor rules for Go development with backend scalability.

UnrankedNo signals yet
Harnessclaudecursor
cursor-rulesclaude-md-filesrules
Details
WorkflowsPreview

go-build

Fix Go build errors, go vet warnings, and linter issues incrementally. Invokes the go-build-resolver agent for minimal, surgical fixes.

UnrankedNo signals yet
Harnessclaudecodexcursorgeminiopencode
commandworkflow
Details
Sub-AgentsPreview

go-build-resolver

Go build, vet, and compilation error resolution specialist. Fixes build errors, go vet issues, and linter warnings with minimal changes. Use when Go builds fail.

UnrankedNo signals yet
Harnessclaudecodexcursorgeminiopencode
subagent
Details
Sub-AgentsPreview

go-mcp-expert

Expert assistant for building Model Context Protocol (MCP) servers in Go using the official SDK.

UnrankedNo signals yet
Harnessclaude
programming-languagessubagents
Details
WorkflowsPreview

go-review

Comprehensive Go code review for idiomatic patterns, concurrency safety, error handling, and security. Invokes the go-reviewer agent.

UnrankedNo signals yet
Harnessclaudecodexcursorgeminiopencode
commandworkflow
Details
Sub-AgentsPreview

go-reviewer

Expert Go code reviewer specializing in idiomatic Go, concurrency patterns, error handling, and performance. Use for all Go code changes. MUST BE USED for Go projects.

UnrankedNo signals yet
Harnessclaudecodexcursorgeminiopencode
subagent
Details
CLAUDE.md / RulesPreview

go-servemux-rest-api-cursorrules-prompt-file

Cursor rules for Go development with ServeMux REST API integration.

UnrankedNo signals yet
Harnessclaudecursor
cursor-rulesclaude-md-filesrules
Details
CLAUDE.md / RulesPreview

go-temporal-dsl-prompt-file

Cursor rules for Go development with Temporal DSL integration.

UnrankedNo signals yet
Harnessclaudecursor
cursor-rulesclaude-md-filesrules
Details
WorkflowsPreview

go-test

Enforce TDD workflow for Go. Write table-driven tests first, then implement. Verify 80%+ coverage with go test -cover.

UnrankedNo signals yet
Harnessclaudecodexcursorgeminiopencode
commandworkflow
Details
CLAUDE.md / RulesPreview

golang-coding-style

golang rule: apply when working on golang and you need Go Coding Style.

UnrankedNo signals yet
Harnessclaudecodexcursorgeminiopencode
rulesgolang
Details
CLAUDE.md / RulesPreview

golang-hooks

golang rule: apply when working on golang and you need Go Hooks.

UnrankedNo signals yet
Harnessclaudecodexcursorgeminiopencode
rulesgolang
Details
CLAUDE.md / RulesPreview

golang-patterns

golang rule: apply when working on golang and you need Go Patterns.

UnrankedNo signals yet
Harnessclaudecodexcursorgeminiopencode
rulesgolang
Details
Sub-AgentsPreview

golang-pro

Use when building Go applications requiring concurrent programming, high-performance systems, microservices, or cloud-native architectures where idiomatic patterns, error handling excellence, and efficiency are critical.

UnrankedNo signals yet
Harnessclaude
language-specialistssubagent
Details
CLAUDE.md / RulesPreview

golang-security

golang rule: apply when working on golang and you need Go Security.

UnrankedNo signals yet
Harnessclaudecodexcursorgeminiopencode
rulesgolang
Details
CLAUDE.md / RulesPreview

golang-testing

golang rule: apply when working on golang and you need Go Testing.

UnrankedNo signals yet
Harnessclaudecodexcursorgeminiopencode
rulesgolang
Details
CLAUDE.md / RulesPreview

google-adk

Google Agent Development Kit rules for agents, tools, sessions, memory, artifacts, evaluation, and deployment

UnrankedNo signals yet
Harnessclaudecursor
cursor-rulesclaude-md-filesrules
Details
WorkflowsExperimental

google-adk

Google's Agent Developer Kit with A2A support

UnrankedNo signals yet
Harnessclaudecursorcodexopencodegemini
a2aagent-to-agentframeworks
No one-command install · SourceDetails
Sub-AgentsPreview

gpt-5-beast-mode

Beast Mode 2.0: A powerful autonomous agent tuned specifically for GPT-5 that can solve complex problems by using tools, conducting research, and iterating until the problem is fully resolved.

UnrankedNo signals yet
Harnessclaude
expert-advisorssubagents
Details
WorkflowsPreview

gradle-build

Fix Gradle build errors for Android and KMP projects

UnrankedNo signals yet
Harnessclaudecodexcursorgeminiopencode
commandworkflow
Details
CLAUDE.md / RulesPreview

graphical-apps-development-cursorrules-prompt-file

Cursor rules for graphical apps development with integration.

UnrankedNo signals yet
Harnessclaudecursor
cursor-rulesclaude-md-filesrules
Details
Sub-AgentsPreview

graphql-architect

Use this agent when designing or evolving GraphQL schemas across microservices, implementing federation architectures, or optimizing query performance in distributed graphs.

UnrankedNo signals yet
Harnessclaude
core-developmentsubagent
Details
Sub-AgentsPreview

graphql-performance-optimizer

GraphQL performance analysis and optimization specialist. Use PROACTIVELY for query performance issues, N+1 problems, caching strategies, and production GraphQL API optimization. Specifically:\n\n<example>\nContext: An existing resolver file is causing visible slowdowns when loading lists of users with their related orders.\nuser: \"Our user list page takes 3–4 seconds to load. Each user has related orders fetched in a separate resolver. Can you diagnose and fix it?\"\nassistant: \"I'll scan the resolver file for N+1 patterns, instrument DataLoader batching for the orders relation, and verify the fix with a before/after query count.\"\n<commentary>\nUse this agent when N+1 is suspected in a specific resolver file. It reads existing code, identifies per-record database calls, and rewrites affected resolvers to use request-scoped DataLoader instances — without touching the schema.\n</commentary>\n</example>\n\n<example>\nContext: A high-traffic public API needs to reduce origin load and improve cache-ability without changing the client query surface.\nuser: \"We serve 50k requests/minute. Can you implement APQ + CDN caching to cut origin hits?\"\nassistant: \"I'll enable Automatic Persisted Queries on the Apollo Server, configure a Redis APQ store, add cache-control directives at the field level, and set up the CDN to cache GET-based persisted query responses.\"\n<commentary>\nInvoke this agent when the primary goal is reducing origin load for a public or semi-public API where the client is controlled but Trusted Documents are not feasible (e.g., third-party mobile apps). APQ converts frequent queries to short GET requests the CDN can cache.\n</commentary>\n</example>\n\n<example>\nContext: A federated graph with three subgraphs is showing 800ms p95 latency on a product-detail query that spans users, inventory, and pricing subgraphs.\nuser: \"Our federated product query is slow in production. Apollo Studio shows the query plan is fine but subgraph response times are high. How do we profile and fix it?\"\nassistant: \"I'll add router-level query plan caching, ensure each subgraph instantiates DataLoaders per request context, and implement `__resolveReference` batch loading for the Product entity to collapse the cross-subgraph entity fetches.\"\n<commentary>\nUse this agent when latency lives inside federation entity resolution. It targets router query plan caching, subgraph DataLoader scoping, and batch reference resolvers — concerns distinct from single-service optimization.\n</commentary>\n</example>

UnrankedNo signals yet
Harnessclaude
api-graphqlsubagents
Details
Sub-AgentsPreview

graphql-security-specialist

GraphQL API security and authorization specialist. Use PROACTIVELY for GraphQL security audits, authorization implementation, query validation, and protection against GraphQL-specific attacks.

UnrankedNo signals yet
Harnessclaude
api-graphqlsubagents
Details
Browse · Armory