Armory
Source

Browse

Search and filter by type across the catalog

2,023 results in Workflows, Identity, Hooks, Skills · page 19 of 85

SkillsPreview

constitutional-ai

Anthropic's method for training harmless AI through self-improvement. Two-phase approach - supervised learning with self-critique/revision, then RLAIF (RL from AI Feedback). Use for safety alignment, reducing harmful outputs without human labels. Powers Claude's safety system.

UnrankedNo signals yet
Harnessclaude
safety-alignment-constitutional-aiskills
Details
WorkflowsPreview

constraint-modeler

Model system constraints with validation, dependency mapping, and optimization strategies

UnrankedNo signals yet
Harnessclaude
simulationworkflows
Details
WorkflowsPreview

containerize-application

Containerize application with optimized Docker configuration, security, and multi-stage builds

UnrankedNo signals yet
Harnessclaude
deploymentworkflows
Details
SkillsPreview

content-creator

Create SEO-optimized marketing content with consistent brand voice. Includes brand voice analyzer, SEO optimizer, content frameworks, and social media templates. Use when writing blog posts, creating social media content, analyzing brand voice, optimizing SEO, planning content calendars, or when user mentions content creation, brand voice, SEO optimization, social media marketing, or content strategy.

UnrankedNo signals yet
Harnessclaude
content-creatorskills
Details
SkillsPreview

content-engine

Create platform-native content systems for X, LinkedIn, TikTok, YouTube, newsletters, and repurposed multi-platform campaigns. Use when the user wants social posts, threads, scripts, content calendars, or one source asset adapted cleanly across platforms.

UnrankedNo signals yet
Harnessclaudecodexcursorgeminiopencode
skill
Details
SkillsPreview

content-hash-cache-pattern

Cache expensive file processing results using SHA-256 content hashes — path-independent, auto-invalidating, with service layer separation.

UnrankedNo signals yet
Harnessclaudecodexcursorgeminiopencode
skill
Details
SkillsPreview

content-research-writer

Assists in writing high-quality content by conducting research, adding citations, improving hooks, iterating on outlines, and providing real-time feedback on each section. Transforms your writing process from solo effort to collaborative partnership.

UnrankedNo signals yet
Harnessclaude
content-research-writerskills
Details
SkillsPreview

context-budget

Audits Claude Code context window consumption across agents, skills, MCP servers, and rules. Identifies bloat, redundant components, and produces prioritized token-savings recommendations.

UnrankedNo signals yet
Harnessclaudecodexcursorgeminiopencode
skill
Details
WorkflowsPreview

context-prime

Primes Claude with comprehensive project understanding by loading repository structure, setting development context, establishing project goals, and defining collaboration parameters.

UnrankedNo signals yet
Harnessclaude
claude-codeslash-commands
Details
WorkflowsPreview

context-priming

Provides a systematic approach to priming Claude Code with comprehensive project context through specialized commands for different project scenarios and development contexts.

UnrankedNo signals yet
Harnessclaude
claude-codeworkflows-knowledge-guides
No one-command install · SourceDetails
WorkflowsPreview

context-restore

Context Restoration: Advanced Semantic Memory Rehydration

UnrankedNo signals yet
Harnessclaude
agentsworkflows
Details
WorkflowsPreview

context-restore-2

Context Restoration: Advanced Semantic Memory Rehydration

UnrankedNo signals yet
Harnessclaude
agentsworkflows
Details
WorkflowsPreview

context-restore-3

Restore saved project context for agent coordination:

UnrankedNo signals yet
Harnessclaude
commandstools
Details
WorkflowsPreview

context-save

Context Save Tool: Intelligent Context Management Specialist

UnrankedNo signals yet
Harnessclaude
agentsworkflows
Details
WorkflowsPreview

context-save-2

Save current project context for future agent coordination:

UnrankedNo signals yet
Harnessclaude
commandstools
Details
HooksPreview

context-timeline

Real-time browser visualization of Claude Code's context window and subagent/tool execution as a git-graph timeline. Opens http://localhost:7878 on SessionStart with a vertical timeline (most recent on top), one column per agent (main + subagents branching from their Task tool call). Tool calls are color-coded by type (Read=green, Edit/Write=orange, Bash=red, Grep/Glob=cyan, Task=purple, Web=yellow, MCP=gray). Right sidebar shows context-window usage (tokens/200K) with cache_read/cache_creation/input/output breakdown plus per-subagent mini-context. Reads ~/.claude/projects/<encoded-cwd>/<session_id>.jsonl directly — no data replication, no network calls. Pure stdlib Python, zero pip dependencies. Persistent daemon HTTP server on port 7878 (auto-fallback 7879-7888 if busy; override with CONTEXT_TIMELINE_PORT env var). Watchdog auto-shutdown after 1h of inactivity. Disable browser auto-open with CONTEXT_TIMELINE_NO_BROWSER=1. Manual shutdown: python3 .claude/hooks/context-timeline.py --shutdown

UnrankedNo signals yet
Harnessclaude
monitoringhooks
Details
HooksPreview

context-timeline-2

context-timeline: Claude Code session visualizer. Modes (called by Claude Code hooks via stdin JSON): --server-start SessionStart hook — launch daemon + open browser --event <NAME> PreToolUse / PostToolUse / Stop hook — notify server --shutdown Kill daemon manually --run-server <PORT> Internal: daemon entry point (do not call directly)

UnrankedNo signals yet
Harnessclaude
monitoringhooks
Details
SkillsPreview

context-window-management

Strategies for managing LLM context windows including summarization, trimming, routing, and avoiding context rot Use when: context window, token limit, context management, context engineering, long context.

UnrankedNo signals yet
Harnessclaude
context-window-managementskills
Details
SkillsPreview

context7-auto-research

Automatically fetch latest library/framework documentation for Claude Code via Context7 API

UnrankedNo signals yet
Harnessclaude
context7-auto-researchskills
Details
SkillsPreview

continuous-agent-loop

Patterns for continuous autonomous agent loops with quality gates, evals, and recovery controls.

UnrankedNo signals yet
Harnessclaudecodexcursorgeminiopencode
skill
Details
SkillsPreview

continuous-learning-v2

Instinct-based learning system that observes sessions via hooks, creates atomic instincts with confidence scoring, and evolves them into skills/commands/agents. v2.1 adds project-scoped instincts to prevent cross-project contamination.

UnrankedNo signals yet
Harnessclaudecodexcursorgeminiopencode
skill
Details
HooksPreview

conventional-commits

Enforce conventional commit message format for all git commits. Validates commit messages follow the pattern: type(scope): description. Supported types: feat, fix, docs, style, refactor, perf, test, chore, ci, build, revert. Ensures consistent commit history for changelog generation and semantic versioning.

UnrankedNo signals yet
Harnessclaude
githooks
Details
HooksPreview

conventional-commits-2

❌ Invalid commit message format Your message: {commit_msg} Commit messages must follow Conventional Commits: type(scope): description Types: feat: New feature fix: Bug fix docs: Documentation changes style: Code style changes (formatting) refactor: Code refactoring perf: Performance improvements test: Adding or updating tests chore: Maintenance tasks ci: CI/CD changes build: Build system changes revert: Revert previous commit Examples: ✅ feat: add user authentication ✅ feat(auth): implement JWT tokens ✅ fix: resolve memory leak in parser ✅ fix(api): handle null responses ✅ docs: update API documentation Invalid: ❌ Added new feature (no type) ❌ feat:add feature (missing space after colon) ❌ feature: add login (wrong type, use 'feat') 💡 Tip: Start your message with one of the types above followed by a colon and space.

UnrankedNo signals yet
Harnessclaude
githooks
Details
SkillsPreview

conversation-memory

Persistent memory systems for LLM conversations including short-term, long-term, and entity-based memory Use when: conversation memory, remember, memory persistence, long-term memory, chat history.

UnrankedNo signals yet
Harnessclaude
conversation-memoryskills
Details
Browse · Armory