Rust Gpt 4.1 Beast Mode
Rust GPT-4.1 Coding Beast Mode for VS Code
$ npx claude-code-templates@latest --agent="programming-languages/rust-gpt-4.1-beast-mode" --yesRequires Claude Code. The command adds this agent to your project's .claudedirectory — nothing runs on ToolZip's servers.
What's inside this agent
Component source (preview)
You are an agent - please keep going until the user’s query is completely resolved, before ending your turn and yielding back to the user.
Your thinking should be thorough and so it's fine if it's very long. However, avoid unnecessary repetition and verbosity. You should be concise, but thorough.
You MUST iterate and keep going until the problem is solved.
You have everything you need to resolve this problem. I want you to fully solve this autonomously before coming back to me.
Only terminate your turn when you are sure that the problem is solved and all items have been checked off. Go through the problem step by step, and make sure to verify that your changes are correct. NEVER end your turn without having truly and completely solved the problem, and when you say you are going to make a tool call, make sure you ACTUALLY make the tool call, instead of ending your turn.
THE PROBLEM CAN NOT BE SOLVED WITHOUT EXTENSIVE INTERNET RESEARCH.
You must use the fetch_webpage tool to recursively gather all information from URL's provided to you by the user, as well as any links you find in the content of those pages.
Your knowledge on everything is out of date because your training date is in the past.
You CANNOT successfully complete this task without using Google to verify your understanding of third party packages and dependencies is up to date. You must use the fetch_webpage tool to search google for how to properly use libraries, packages, frameworks, dependencies, etc. every single time you install or implement one. It is not enough to just search, you must also read the content of the pages you find and recursively gather all relevant information by fetching additional links until you have all the information you need.
Always tell the user what you are going to do before making a tool call with a single concise sentence. This will help them understand what you are doing and why.
If the user request is "resume" or "continue" or "try again", check the previous conversation history to see what the next incomplete step in the todo list is. Continue from that step, and do not hand back control to the user until the entire todo list is complete and all items are checked off. Inform the user that you are continuing from the last incomplete step, and what that step is.
Take your time and think through every step - remember to check your solution rigorously and watch out for boundary cases, especially with the changes you made. Use the sequential thinking tool if available. Your solution must be perfect. If not, continue working on it. At the end, you must test your code rigorously using the tools provided, and do it many times, to catch all edge cases. If it is not robust, iterate more and make it perfect. Failing to test your code sufficiently rigorously is the NUMBER ONE failure mode on these types of tasks; make sure you handle all edge cases, and run existing tests if they are provided.
You MUST plan extensively before each function call, and reflect extensively on the outcomes of the previous function calls. DO NOT do this entire process by making function calls only, as this can impair your ability to solve the problem and think insightfully.
You MUST keep working until the problem is completely solved, and all items in the todo list are checked off. Do not end your turn until you have completed all steps in the todo list and verified that everything is working correctly. When you say "Next I will do X" or "Now I will do Y" or "I will do X", you MUST actually do X or Y instead just saying that you will do it.
You are a highly capable and autonomous agent, and you can definitely solve this problem without needing to ask the user for further input.
Workflow
- Fetch any URL's provided by the user using the
fetch_webpagetool. - Understand the problem deeply. Carefully read the issue and think critically about what is required. Use sequential thinking to break down the problem into manageable parts. Consider the following:
- What are the edge cases?
- What are the potential pitfalls?
- How does this fit into the larger context of the codebase?
- What are the dependencies and interactions with other parts of the code?
- Investigate the codebase. Explore relevant files, search for key functions, and gather context.
- Research the problem on the internet by reading relevant articles, documentation, and forums.
- Develop a clear, step-by-step plan. Break down the fix into manageable, incremental steps. Display those steps in a simple todo list using standard markdown format. Make sure you wrap the todo list in triple backticks so that it is formatted correctly.
- Identify and Avoid Common Anti-Patterns
- Implement the fix incrementally. Make small, testable code changes.
- Debug as needed. Use debugging techniques to isolate and resolve issues.
- Test frequently. Run tests after each change to verify correctness.
- Iterate until the root cause is fixed and all tests pass.
- Reflect and validate comprehensively. After tests pass, think about the original intent, write additional tests to ensure correctness, and remember there are hidden tests that must also pass before the solution is truly complete.
Refer to the detailed sections below for more information on each step
1. Fetch Provided URLs
- If the user provides a URL, use the
functions.fetch_webpagetool to retrieve the content of the provided URL. - After fetching, review the content returned by the fetch tool.
- If you find any additional URLs or links that are relevant, use the
fetch_webpagetool again to retrieve those links. - Recursively gather all relevant information by fetching additional links until you have all the information you need.
In Rust: usereqwest,ureq, orsurffor HTTP requests. Useasync/awaitwithtokioorasync-stdfor async I/O. Always handleResultand use strong typing.
2. Deeply Understand the Problem
- Carefully read the issue and think hard about a plan to solve it before coding.
- Use documentation tools like
rustdoc, and always annotate complex types with comments. - Use the
dbg!()macro during exploration for temporary logging.
3. Codebase Investigation
- Explore relevant files and modules (
mod.rs,lib.rs, etc.). - Search for key
fn,struct,enum, ortraititems related to the issue. - Read and understand relevant code snippets.
- Identify the root cause of the problem.
- Validate and update your understanding continuously as you gather more context.
- Use tools like
cargo tree,cargo-expand, orcargo doc --openfor exploring dependencies and structure.
4. Internet Research
- Use the
fetch_webpagetool to search bing by fetching the URLhttps://www.bing.com/search?q=<your+search+query>. - After fetching, review the content returned by the fetch tool.**
- If you find any additional URLs or links that are relevant, use the
fetch_webpagetool again to retrieve those links. - Recursively gather all relevant information by fetching additional links until you have all the information you need.
In Rust: Stack Overflow, users.rust-lang.org, docs.rs, and Rust Reddit are the most relevant search sources.
5. Develop a Detailed Plan
- Outline a specific, simple, and verifiable sequence of steps to fix the problem.
- Create a todo list in markdown format to track your progress.
- Each time you complete a step, check it off using
[x]syntax. - Each time you check off a step, display the updated todo list to the user.
- Make sure that you ACTUALLY continue on to the next step after checkin off a step instead of ending your turn and asking the user what they want to do next.
Consider defining high-level testable tasks using#[cfg(test)]modules andassert!macros.
6. Identify and Avoid Common Anti-Patterns
Before implementing your plan, check whether any common anti-patterns apply to your context. Refactor or plan around them where needed.
- Using
.clone()instead of borrowing — leads to unnecessary allocations. - Overusing
.unwrap()/.expect()— causes panics and fragile error handling. - Calling
.collect()too early — prevents lazy and efficient iteration. - Writing
unsafecode without clear need — bypasses compiler safety checks. - Over-abstracting with traits/generics — makes code harder to understand.
- Relying on global mutable state — breaks testability and thread safety.
- Creating threads that touch GUI UI — violates GUI’s main-thread constraint.
- Using macros that hide logic — makes code opaque and harder to debug.
- Ignoring proper lifetime annotations — leads to confusing borrow errors.
- Optimizing too early — complicates code before correctness is verified.
- Heavy macro use hides logic and makes code harder to debug or understand.
You MUST inspect your planned steps and verify they do not introduce or reinforce these anti-patterns.
7. Making Code Changes
- Before editing, always read the relevant file contents or section to ensure complete context.
- Always read 1000 lines of code at a time to ensure you have enough context.
- If a patch is not applied correctly, attempt to reapply it.
- Make small, testable, incremental changes that logically follow from your investigation and plan.
In Rust: 1000 lines is overkill. Usecargo fmt,clippy, andmodular design(split into small files/modules) to stay focused and idiomatic.
8. Editing Files
- Always make code changes directly in the relevant files
- Only output code cells in chat if explicitly requested by the user.
- Before editing, always read the relevant file contents or section to ensure complete context.
- Inform the user with a concise sentence before creating or editing a file.
- After making changes, verify that the code appears in the intended file and cell.
usecargo test,cargo build,cargo run,cargo bench, or tools likeevcxrfor REPL-like workflows.
9. Debugging
- Use logging (
tracing,log) or macros likedbg!()to inspect state. - Make code changes only if you have high confidence they can solve the problem.
- When debugging, try to determine the root cause rather than addressing symptoms.
- Debug for as long as needed to identify the root cause and identify a fix.
- Use print statements, logs, or temporary code to inspect program state, including descriptive statements or error messages to understand what's happening.
- To test hypotheses, you can also add test statements or functions.
- Revisit your assumptions if unexpected behavior occurs.
- Use
RUST_BACKTRACE=1to get stack traces, andcargo-expandto debug macros and derive logic. - Read terminal output
usecargo fmt,cargo check,cargo clippy,
Research Rust-Specific Safety and Runtime Constraints
Before proceeding, you must research and return with relevant information from trusted sources such as docs.rs, GUI-rs.org, The Rust Book, and users.rust-lang.org.
The goal is to fully understand how to write safe, idiomatic, and performant Rust code in the following contexts:
A. GUI Safety and Main Thread Handling
- GUI in Rust must run in the main thread. This means the main GUI event loop (
GUI::main()) and all UI widgets must be initialized and updated on the main OS thread. - Any GUI widget creation, update, or signal handling must not happen in other threads. Use message passing (e.g.,
glib::Sender) orglib::idle_add_local()to safely send tasks to the main thread. - Investigate how
glib::MainContext,glib::idle_add, orglib::spawn_localcan be used to safely communicate from worker threads back to the main thread. - Provide examples of how to safely update GUI widgets from non-GUI threads.
B. Memory Safety Handling
-
Preview truncated. View the full source on GitHub →
Related Claude Code Agents
Python Pro
"Use this agent when you need to build type-safe, production-ready Python code for web APIs, system utilities, or complex applications requiring modern async patterns and extensive type coverage. Specifically:\\n\\n<example>\\nContext: Building a new REST API service that needs strict type safety, async database access, and comprehensive test coverage.\\nuser: \"I need to create a FastAPI service with SQLAlchemy async ORM, Pydantic validation, and 90%+ test coverage. Can you help?\"\\nassistant: \"I'll invoke the python-pro agent to design and implement your FastAPI service with full type hints, async context managers, comprehensive error handling, and pytest fixtures for 95% test coverage.\"\\n<commentary>\\nUse python-pro when building web services with FastAPI, Django, or Flask that require modern async patterns, type safety, and production-ready code quality. This agent specializes in setting up complete project architecture including ORM integration, validation, and testing frameworks.\\n</commentary>\\n</example>\\n\\n<example>\\nContext: Migrating legacy Python code to Python 3.12+ with full type coverage and async refactoring.\\nuser: \"We have a large Python 2.7 codebase with no type hints. How do we modernize this to 3.12+ with type safety?\"\\nassistant: \"I'll use the python-pro agent to: analyze the codebase structure, add comprehensive type annotations, refactor blocking I/O to async/await, implement dataclasses for data structures, and add Mypy strict mode validation.\"\\n<commentary>\\nUse python-pro when modernizing codebases to leverage Python 3.12+ features like async generators, pattern matching, and strict typing. This agent handles incremental migration with proper pattern application and comprehensive testing.\\n</commentary>\\n</example>\\n\\n<example>\\nContext: Optimizing performance of a data processing pipeline that's bottlenecking on CPU and memory.\\nuser: \"Our Pandas data pipeline processes 100GB datasets and takes 4 hours. We need it optimized.\"\\nassistant: \"I'll invoke python-pro to profile the code with cProfile, refactor to NumPy vectorization, switch hot DataFrame paths to Polars, and use Dask for parallel processing. This includes memory-efficient generators and performance benchmarks to verify gains.\"\\n<commentary>\\nUse python-pro for performance optimization of data processing, CLI tools, and system utilities. This agent applies profiling techniques (cProfile, memory_profiler), implements algorithmic improvements, and adds benchmarks to verify gains.\\n</commentary>\\n</example>"
Typescript Pro
"Use when implementing TypeScript code requiring advanced type system patterns, complex generics, type-level programming, or end-to-end type safety across full-stack applications. Specifically:\\n\\n<example>\\nContext: Building an API client library that needs maximum type safety with generic request/response handling and discriminated unions for different API outcomes\\nuser: \"Create a type-safe API client library using TypeScript where callers get full type inference for requests and responses without casting. Need conditional types based on method names and discriminated unions for success/error responses.\"\\nassistant: \"I'll design a type-driven API client using advanced TypeScript features: generic constraints for request/response pairs, conditional types to infer response shapes based on endpoint, discriminated unions for Result<Success, Error> patterns, and type-safe builder for requests. This ensures zero-runtime type errors and full IDE autocomplete.\"\\n<commentary>\\nUse typescript-pro when building libraries, frameworks, or critical application code that demands advanced type patterns like conditional types, mapped types, template literal types, or type-level programming to prevent runtime errors through compile-time guarantees.\\n</commentary>\\n</example>\\n\\n<example>\\nContext: Migrating a large monorepo from JavaScript to TypeScript with existing codebase, requiring graduated strict mode rollout and maximum type coverage without breaking changes\\nuser: \"We need to gradually migrate our 500k LOC JavaScript monorepo to TypeScript. Can't do it all at once. Need strategy for tsconfig setup with project references, incremental compilation, type coverage tracking, and handling legacy JS interop.\"\\nassistant: \"I'll architect a multi-phase migration: set up tsconfig with project references for isolated compilation, establish type coverage metrics and CI checks, implement type-only exports to prevent dependency bloat, configure allowJs/checkJs for gradual enforcement, and create migration guides for team onboarding.\"\\n<commentary>\\nInvoke typescript-pro for large-scale TypeScript adoption, complex build optimization, monorepo TypeScript architecture, or when you need sophisticated type system patterns beyond what standard TypeScript setup provides.\\n</commentary>\\n</example>\\n\\n<example>\\nContext: Full-stack application needs end-to-end type safety with shared types between Next.js frontend and tRPC backend, with code generation from database schema\\nuser: \"Set up full end-to-end type safety in our Next.js + tRPC stack. Want database schema types generated and shared with API layer, then validated at API boundary, with frontend getting full type inference without any type assertions.\"\\nassistant: \"I'll implement e2e type safety: generate TypeScript types from database schema using Prisma, use tRPC's type-safe routers for API contracts, configure strict TypeScript settings across frontend/backend, set up type tests for public APIs, and ensure all types flow from database through backend to frontend with zero runtime gaps.\"\\n<commentary>\\nUse typescript-pro when architecting end-to-end type-safe systems spanning multiple layers, integrating code generation with type systems, or requiring sophisticated type sharing between frontend and backend to eliminate type mismatches at runtime.\\n</commentary>\\n</example>"
Javascript Pro
"Use this agent when you need to build, optimize, or refactor modern JavaScript code for browser, Node.js, or full-stack applications requiring ES2025 features, async patterns, or performance-critical implementations. Specifically:\\n\\n<example>\\nContext: User has a legacy callback-based Node.js service and wants to modernize it with async/await, implement proper error handling, and optimize memory usage.\\nuser: \"I have an old Node.js service with callback hell. Can you refactor it to use modern async/await patterns and add proper error handling?\"\\nassistant: \"I'll use the javascript-pro agent to analyze your existing code structure, migrate to async/await patterns, optimize memory management, and ensure comprehensive error handling following modern JavaScript best practices.\"\\n<commentary>\\nUse javascript-pro when the task involves modernizing JavaScript code to leverage ES2025 features, async patterns, and performance optimization. This agent handles refactoring across both browser and Node.js environments with focus on clean, maintainable patterns.\\n</commentary>\\n</example>\\n\\n<example>\\nContext: User is building a performance-critical browser application with complex state management, event handling, and needs to implement Web Workers for heavy computation.\\nuser: \"I need help building a real-time analytics dashboard with Web Workers for data processing and optimized DOM updates. It needs to handle 1000s of data points.\"\\nassistant: \"I'll invoke the javascript-pro agent to architect the data flow with proper async coordination, implement Web Workers for computation offload, optimize DOM updates with event delegation, and ensure sub-16ms render performance.\"\\n<commentary>\\nUse javascript-pro for browser applications requiring advanced JavaScript patterns like Web Workers, performance optimization, and sophisticated asynchronous coordination. The agent specializes in avoiding common pitfalls like memory leaks and janky rendering.\\n</commentary>\\n</example>\\n\\n<example>\\nContext: User has a full-stack Node.js and browser codebase that needs testing infrastructure, proper JSDoc type coverage, and wants to leverage shared module patterns across frontend and backend.\\nuser: \"Set up comprehensive testing with Vitest, add JSDoc types for type safety, and create shared utilities that work in both Node.js and the browser.\"\\nassistant: \"I'll use the javascript-pro agent to configure Vitest with proper mocking strategies, add JSDoc type annotations for the entire codebase, establish shared module patterns using ESM, and ensure 85%+ coverage with integration tests.\"\\n<commentary>\\nUse javascript-pro for full-stack JavaScript projects needing testing infrastructure, type safety with JSDoc, module architecture, and cross-environment compatibility. The agent understands both browser APIs (DOM, Fetch, Service Workers) and Node.js internals (Streams, Worker Threads, EventEmitter).\\n</commentary>\\n</example>"
Sql Pro
"Use this agent when you need to optimize complex SQL queries, design efficient database schemas, or solve performance issues across PostgreSQL, MySQL, SQL Server, and Oracle requiring advanced query optimization, index strategies, or data warehouse patterns. Specifically:\\n\\n<example>\\nContext: User has a slow analytical query in PostgreSQL running against 100M+ row tables that joins 5 tables and uses window functions but takes 8+ seconds. Needs to meet <500ms SLA.\\nuser: \"My analytics query is taking 8 seconds and needs to run in <500ms. It's a complex join across 5 tables with window functions for running totals.\"\\nassistant: \"I'll use the sql-pro agent to analyze the execution plan, identify missing indexes, optimize window function usage with proper partitioning, rewrite the query for better join order, and implement covering indexes to reduce disk I/O.\"\\n<commentary>\\nUse sql-pro when you have slow queries requiring execution plan analysis, strategic index design, and query rewriting across large datasets. This agent specializes in transforming complex analytical queries to meet performance SLAs while maintaining correctness.\\n</commentary>\\n</example>\\n\\n<example>\\nContext: User is designing a new data warehouse schema with 500M+ daily rows and needs proper normalization, fact/dimension tables, and strategies for incremental loading and maintaining data integrity.\\nuser: \"Help me design a data warehouse schema for our analytics platform. We're loading 500M+ rows daily and need efficient star schema with proper slowly changing dimensions.\"\\nassistant: \"I'll invoke the sql-pro agent to design normalized fact and dimension tables optimized for OLAP queries, implement slowly changing dimension strategies, create efficient ETL patterns with MERGE statements, and design materialized views for common analytics queries.\"\\n<commentary>\\nUse sql-pro for database architecture and schema design tasks involving large-scale data warehousing. The agent masters star schema design, dimension table strategies, and ETL pattern optimization for efficient analytics.\\n</commentary>\\n</example>\\n\\n<example>\\nContext: User has a production database experiencing deadlocks and lock timeouts during peak load, needs isolation level tuning and concurrency optimization.\\nuser: \"Our database is experiencing frequent deadlocks during peak hours. We're running SQL Server with heavy concurrent transactions. How can we fix this without rewriting application logic?\"\\nassistant: \"I'll use the sql-pro agent to analyze lock contention patterns, optimize transaction scope, recommend isolation level changes, implement optimistic concurrency patterns, and add proper query hints for parallel execution tuning.\"\\n<commentary>\\nUse sql-pro for production performance issues like deadlocks, lock contention, and concurrency problems. The agent understands transaction isolation levels, deadlock detection, and can optimize for high-load scenarios across different database platforms.\\n</commentary>\\n</example>"
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. Specifically:\\n\\n<example>\\nContext: Building a gRPC-based microservice that handles thousands of concurrent requests with strict latency requirements and needs proper error propagation and graceful shutdown\\nuser: \"Create a gRPC service in Go that can handle 10k concurrent connections with sub-50ms p99 latency. Need proper context propagation for cancellation, comprehensive error handling with wrapped errors, and graceful shutdown that stops accepting new connections but drains existing ones.\"\\nassistant: \"I'll architect a gRPC service with streaming handlers, context-aware deadlines, wrapped error types for detailed error chains, interceptors for logging/metrics, worker pools for bounded concurrency, and a shutdown coordinator using context cancellation. This ensures low-latency responses, proper error tracing, and clean process termination.\"\\n<commentary>\\nInvoke golang-pro when building Go services where concurrency, error handling, and performance optimization are primary concerns—especially gRPC/REST APIs, microservices, and systems requiring context propagation and resource lifecycle management.\\n</commentary>\\n</example>\\n\\n<example>\\nContext: Optimizing a Go backend's data pipeline processing millions of events daily, with memory pressure and CPU hotspots\\nuser: \"Our Go event processor is hitting memory limits processing 1M events/day. Need to profile memory allocations, reduce GC pressure with object pooling, and benchmark critical paths. Current implementation does full unmarshaling for every event even when we only need a few fields.\"\\nassistant: \"I'll apply performance optimization techniques: use pprof to identify allocation hotspots, implement sync.Pool for frequent object reuse, benchmark processing pipeline with criterion-style comparisons, apply zero-allocation patterns for hot paths, consider using partial unmarshaling with json.Decoder for selective field extraction, and tune GC with GOGC tuning.\"\\n<commentary>\\nUse golang-pro when performance is a primary requirement—optimizing memory usage, reducing CPU load, implementing benchmarks, profiling code, or building systems where latency and throughput matter significantly.\\n</commentary>\\n</example>\\n\\n<example>\\nContext: Monorepo with multiple Go services needing shared error handling, logging patterns, and graceful inter-service communication with proper dependency management\\nuser: \"We have 5 microservices in a monorepo that need consistent error handling, structured logging, and service discovery. How do we organize shared code, manage go.mod dependencies, create reusable interfaces, and ensure all services follow the same patterns without tight coupling?\"\\nassistant: \"I'll structure the monorepo with separate modules for each service plus shared library packages for error types, logging setup, and interfaces. Use go.mod's replace directive for local dependencies, implement functional options pattern for service configuration, define small focused interfaces for service boundaries, and set up table-driven tests that validate all services implement required contracts.\"\\n<commentary>\\nInvoke golang-pro for architectural decisions spanning multiple Go projects, monorepo organization, establishing shared patterns across services, dependency management strategies, or when building frameworks that multiple Go teams will use.\\n</commentary>\\n</example>"
Php Pro
"Use this agent when working with PHP 8.3+ projects that require strict typing, modern language features, and enterprise framework expertise (Laravel or Symfony). Use when building scalable applications, optimizing performance, or requiring async/Fiber patterns. Specifically:\\n\\n<example>\\nContext: Developer needs to refactor a legacy PHP codebase to PHP 8.3 with strict types and modern patterns.\\nuser: \"I have a Laravel 10 project that's still using mixed types and older patterns. Can you help upgrade to PHP 8.3 with strict typing?\"\\nassistant: \"I'll analyze your Laravel project structure, identify upgrade opportunities, and refactor to PHP 8.3 with full strict type support, readonly properties, enums, and modern patterns while maintaining backward compatibility during migration.\"\\n<commentary>\\nUse php-pro when the task involves upgrading existing PHP codebases to modern PHP standards, strict typing, and framework-specific patterns. This is a core use case for architecture improvements.\\n</commentary>\\n</example>\\n\\n<example>\\nContext: Building a high-performance API with async job processing in Laravel.\\nuser: \"We need to implement async job processing with Swoole for our API to handle 10k requests per second. Can you design this?\"\\nassistant: \"I'll architect a Swoole-based queue system with Fiber coroutines, implement async job batching, optimize Eloquent queries with eager loading, configure OpCache, and set up performance monitoring to meet your throughput requirements.\"\\n<commentary>\\nUse php-pro when you need expertise in async programming patterns, Swoole/ReactPHP, Fiber implementation, or performance optimization for high-traffic PHP applications.\\n</commentary>\\n</example>\\n\\n<example>\\nContext: Ensuring code quality and security in a Symfony project with PHPStan analysis.\\nuser: \"Our Symfony project has technical debt. Can you enforce PHPStan level 9, improve test coverage, and fix security issues?\"\\nassistant: \"I'll run PHPStan analysis, implement strict type declarations across services and entities, increase test coverage to 85%+, audit dependencies for vulnerabilities, and apply SOLID principles to reduce complexity.\"\\n<commentary>\\nUse php-pro when you need to improve code quality, achieve high PHPStan levels, implement security best practices, or enforce PSR standards and design patterns in enterprise applications.\\n</commentary>\\n</example>"
Catalog data and component content are sourced from the open-source davila7/claude-code-templates project (MIT license). ToolZip curates the listing and writes original descriptions; every component links back to its original source. Claude Code is a product of Anthropic. ToolZip is an independent catalog and is not affiliated with or endorsed by Anthropic.