Tag: anthropic
Conteúdos públicos da tag anthropic no Brabrix Skill Hub.
Conteúdos públicos da tag anthropic no Brabrix Skill Hub.
67 itens
Categoria: AI Coding Assistants
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
Categoria: AI Coding Assistants
A skill for creating new skills and iteratively improving them.
Categoria: AI Coding Assistants
const pptxgen = require("pptxgenjs");
Categoria: AI Coding Assistants
When using an existing presentation as a template:
Categoria: AI Coding Assistants
| Task | Guide | |------|-------| | Read/analyze content | python -m markitdown presentation.pptx | | Edit or create from template | Read editing.md | | Create from scratch | Read pptxgenjs.md |
Categoria: AI Coding Assistants
This document contains advanced PDF processing features, detailed examples, and additional libraries not covered in the main skill instructions.
Categoria: AI Coding Assistants
If the PDF has fillable form fields: - Run this script from this file's directory: python scripts/extractformfieldinfo.py . It will create a JSON file with a list of fields in this format: [ { "fieldid": (unique ID for the field), "page": (page number, 1-based), "rect": ([left, bottom, right, top] bounding box in PDF coordinates, y=0 is the bottom of the page), "type": ("text", "checkbox", "radiogroup", or "choice"), }, // Checkboxes have "checkedvalue" and "uncheckedvalue" properties: { "fieldi
Categoria: AI Coding Assistants
This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions.
Categoria: AI Coding Assistants
This document provides Python-specific best practices and examples for implementing MCP servers using the MCP Python SDK. It covers server setup, tool registration patterns, input validation with Pydantic, error handling, and complete working examples.
Categoria: AI Coding Assistants
This document provides Node/TypeScript-specific best practices and examples for implementing MCP servers using the MCP TypeScript SDK. It covers project structure, server setup, tool registration patterns, input validation with Zod, error handling, and complete working examples.
Categoria: AI Coding Assistants
- Python: {service}mcp (e.g., slackmcp) - Node/TypeScript: {service}-mcp-server (e.g., slack-mcp-server)
Categoria: AI Coding Assistants
This document provides guidance on creating comprehensive evaluations for MCP servers. Evaluations test whether LLMs can effectively use your MCP server to answer realistic, complex questions using only the tools provided.
Categoria: AI Coding Assistants
Create MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. The quality of an MCP server is measured by how well it enables LLMs to accomplish real-world tasks.
Categoria: AI Coding Assistants
## Instructions You are being asked to write internal company communication that doesn't fit into the standard formats (3P updates, newsletters, or FAQs). Before proceeding: 1. Ask the user about thei
Categoria: AI Coding Assistants
## Instructions You are an assistant for answering questions that are being asked across the company. Every week, there are lots of questions that get asked across the company, and your goal is to try
Categoria: AI Coding Assistants
## Instructions You are being asked to write a company-wide newsletter update. You are meant to summarize the past week/month of a company in the form of a newsletter that the entire company will read
Categoria: AI Coding Assistants
## Instructions You are being asked to write a 3P update. 3P updates stand for "Progress, Plans, Problems." The main audience is for executives, leadership, other teammates, etc. They're meant to be v
Categoria: AI Coding Assistants
--- name: internal-comms description: A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever as
Categoria: AI Coding Assistants
--- name: frontend-design description: Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, p
Categoria: AI Coding Assistants
A .docx file is a ZIP archive containing XML files.
Categoria: AI Coding Assistants
This skill provides a structured workflow for guiding users through collaborative document creation. Act as an active guide, walking users through three stages: Context Gathering, Refinement & Structure, and Reader Testing.
Categoria: AI Coding Assistants
Bindings not shown here: This README covers the most common managed-agents flows for TypeScript. If you need a class, method, namespace, field, or behavior that isn't shown, WebFetch the TypeScript SDK repo or the relevant docs page from shared/live-sources.md rather than guess. Do not extrapolate from cURL shapes or another language's SDK.
Categoria: AI Coding Assistants
For conceptual overview (tool definitions, tool choice, tips), see shared/tool-use-concepts.md.
Categoria: AI Coding Assistants
const stream = client.messages.stream({ model: "claude-opus-4-7", maxtokens: 64000, messages: [{ role: "user", content: "Write a story" }], });