CLAUDE CODE MARKETPLACES
SkillsMarketplacesMCPDigestLearnAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Web & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web CrawlingAutomation & Workflows
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Learn
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic
  1. Skills
  2. /
  3. dfinity
  4. /
  5. icskills
  6. /
  7. Https Outcalls

Https Outcalls

Editor's Note

When your canister needs to talk to an external API, this shows you how to make HTTPS requests that actually reach consensus across replicas. The tricky part is that every node runs the same code, so you need a transform function to strip out non-deterministic fields like timestamps and header ordering before responses are compared. The examples cover cycle cost management (outcalls aren't free), the 2MB response limit, and why you should never skip max_response_bytes unless you want to burn 21 billion cycles per call. Also walks through idempotency patterns for POST requests, since a 13-node subnet means your "create order" endpoint gets hit 13 times. Both Motoko and Rust examples use helper functions that auto-compute cycle costs.

Install

npx skills add https://github.com/dfinity/icskills --skill https-outcalls
Votes
0
Installs140
GitHub Stars23
First SeenJun 3, 2026
View on GitHub

Comments

Login to comment