Armory
Source

Browse

Search and filter by type across the catalog

1,513 results in Memory, Sub-Agents, Workflows, Observability · page 27 of 64

WorkflowsPreview

git-bisect-helper

Use PROACTIVELY to guide automated git bisect sessions for finding regression commits with smart test execution

UnrankedNo signals yet
Harnessclaude
git-workflowworkflows
Details
Sub-AgentsPreview

git-flow-manager

Git Flow workflow manager. Use PROACTIVELY for Git Flow operations including branch creation, merging, validation, release management, and pull request generation. Handles feature, release, and hotfix branches.

UnrankedNo signals yet
Harnessclaude
gitsubagents
Details
Sub-AgentsPreview

git-manager

Use this agent when you need to manage Git operations, organize commits, clean up repository history, or optimize Git workflows. This includes deciding how to break down changes into logical commits, cleaning up messy commit history through squashing or reordering, managing branch strategies, resolving merge conflicts, performing repository maintenance, and optimizing Git workflows for collaboration. Examples: <example>Context: User has multiple uncommitted changes across different features that need to be organized. user: 'I have changes for authentication, UI updates, and bug fixes all mixed together. How should I commit these?' assistant: 'I'll use the git-manager agent to analyze your changes and create a logical commit strategy.' <commentary>Since the user needs help organizing multiple changes into logical commits, use the git-manager agent to create a proper commit strategy.</commentary></example> <example>Context: User's feature branch has a messy commit history before merging to main. user: 'My feature branch has 15 commits with typo fixes and work-in-progress commits. Can you clean this up before I merge?' assistant: 'I'll use the git-manager agent to clean up your commit history and prepare it for merge.' <commentary>Since the user needs commit history cleanup and organization, use the git-manager agent to handle the repository maintenance.</commentary></example>

UnrankedNo signals yet
Harnessclaude
dlezosubagents
Details
Sub-AgentsPreview

git-pr-workflows-code-reviewer

Elite code review expert specializing in modern AI-powered code analysis, security vulnerabilities, performance optimization, and production reliability. Masters static analysis tools, security scanning, and configuration review with 2024/2025 best practices. Use PROACTIVELY for code quality assurance.

UnrankedNo signals yet
Harnessclaudecodexcursorgeminiopencode
performancereviewsecuritysubagent
Details
WorkflowsPreview

git-status

Show detailed git repository status

UnrankedNo signals yet
Harnessclaude
utilitiesworkflows
Details
WorkflowsPreview

git-workflow

Orchestrate git workflow from code review through PR creation with quality gates

UnrankedNo signals yet
Harnessclaude
agentsworkflows
Details
WorkflowsPreview

git-workflow-2

Complete Git workflow using specialized agents:

UnrankedNo signals yet
Harnessclaude
commandsworkflows
Details
Sub-AgentsPreview

git-workflow-manager

Use this agent when you need to design, establish, or optimize Git workflows, branching strategies, and merge management for a project or team.

UnrankedNo signals yet
Harnessclaude
developer-experiencesubagent
Details
Sub-AgentsPreview

github-actions-expert

GitHub Actions specialist focused on secure CI/CD workflows, action pinning, OIDC authentication, permissions least privilege, and supply-chain security

UnrankedNo signals yet
Harnessclaude
securitysubagents
Details
WorkflowsPreview

github-issues

Create, update, and manage GitHub issues using MCP tools. Use this skill when users want to create bug reports, feature requests, or task issues, update existing issues, add labels/assignees/milestones, or manage issue workflows. Triggers on requests like "create an issue", "file a bug", "request a feature", "update issue X", or any GitHub issue management task.

UnrankedNo signals yet
Harnessclaude
project-managementworkflows
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
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
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
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
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
Sub-AgentsPreview

growth-loops

Use when the user wants to design a growth loop, understand PLG mechanics, or build sustainable acquisition. Triggers on: 'growth loop', 'flywheel', 'viral loop', 'PLG growth', 'product-led growth', 'growth mechanics', 'how do we grow', 'word of mouth'.

UnrankedNo signals yet
Harnessclaude
business-productsubagent
Details
Browse · Armory