agentsclimarketplace

Clade hello world

Skill jeremylongshore/claude-code-plugins-plus-skills/skills/.curated/clade-hello-world

'Send your first message to Claude using the Anthropic SDK.From its SKILL.md

Install
npx -y skills add jeremylongshore/claude-code-plugins-plus-skills --skill clade-hello-world

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

3.4 KB, 807 tokens by cl100k_base, as published. Nobody here has run it

Anthropic Hello World

Overview

Send your first message to Claude and get a response using the Messages API.

Prerequisites

  • Completed clade-install-auth setup
  • ANTHROPIC_API_KEY environment variable set

Instructions

Step 1: Basic Message

import Anthropic from '@claude-ai/sdk';

const client = new Anthropic();

const message = await client.messages.create({
  model: 'claude-sonnet-4-20250514',
  max_tokens: 1024,
  messages: [
    { role: 'user', content: 'What is the capital of France?' }
  ],
});

console.log(message.content[0].text);
// "The capital of France is Paris."

Step 2: Add a System Prompt

const message = await client.messages.create({
  model: 'claude-sonnet-4-20250514',
  max_tokens: 1024,
  system: 'You are a helpful geography expert. Be concise.',
  messages: [
    { role: 'user', content: 'What is the capital of France?' }
  ],
});

Step 3: Multi-Turn Conversation

const message = await client.messages.create({
  model: 'claude-sonnet-4-20250514',
  max_tokens: 1024,
  messages: [
    { role: 'user', content: 'What is the capital of France?' },
    { role: 'assistant', content: 'The capital of France is Paris.' },
    { role: 'user', content: 'What is its population?' },
  ],
});

Python Example

import anthropic

client = anthropic.Anthropic()

message = client.messages.create(
    model="claude-sonnet-4-20250514",
    max_tokens=1024,
    messages=[
        {"role": "user", "content": "What is the capital of France?"}
    ],
)
print(message.content[0].text)

Output

  • message.content[0].text — Claude's text response
  • message.model — model ID used
  • message.usage.input_tokens / message.usage.output_tokens — token counts
  • message.stop_reasonend_turn, max_tokens, or tool_use

Error Handling

ErrorCauseSolution
authentication_errorBad API keyCheck ANTHROPIC_API_KEY
invalid_request_errorMissing required fieldBoth messages and max_tokens are required
not_found_errorInvalid model IDUse a valid model like claude-sonnet-4-20250514

Available Models

ModelBest ForContextCost (input/output per MTok)
claude-opus-4-20250514Complex reasoning200K$15 / $75
claude-sonnet-4-20250514Balanced quality + speed200K$3 / $15
claude-haiku-4-5-20251001Fast, cheap tasks200K$0.80 / $4

Examples

See Step 1 (basic message), Step 2 (system prompt), and Step 3 (multi-turn) above. Python example included in its own section.

Resources

Next Steps

Proceed to clade-model-inference for streaming and advanced patterns.

What ships with it: 1 file

1.6 KB alongside SKILL.md

references/

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.