Add HTTP proxy instructions to all proxy-enabled resource skills#122
Open
major-connector-creator[bot] wants to merge 1 commit into
Open
Add HTTP proxy instructions to all proxy-enabled resource skills#122major-connector-creator[bot] wants to merge 1 commit into
major-connector-creator[bot] wants to merge 1 commit into
Conversation
…rce skills Update 14 resource skill files (13 shared + 1 major/attio) to document the HTTP proxy via createProxyFetch as a third way to interact with resources, matching the pattern already established in the Stripe skill. Each skill now lists: 1. MCP tools (direct, no code needed) 2. Generated TypeScript clients (for app code) 3. HTTP proxy (Next.js apps) - NEW Resources updated: hubspot, clerk, slack, notion, salesforce, outreach, fireflies, custom-api, googlecalendar, googlesheets, linkedin, metamarketing, tiktokads, attio
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Update 14 resource skill files to document the HTTP proxy via
createProxyFetchas a third way to interact with resources, matching the pattern already established in the Stripe skill.Changes
Each updated skill file gets two modifications:
createProxyFetchfrom@major-tech/resource-client/next, with a link to theusing-http-proxyskill.Files updated (14 total)
Shared plugins (13 files in
plugins/shared/skills/):resources_hubspot/SKILL.mdresources_clerk/SKILL.mdresources_slack/SKILL.mdresources_notion/SKILL.mdresources_salesforce/SKILL.mdresources_outreach/SKILL.mdresources_fireflies/SKILL.mdresources_custom-api/SKILL.mdresources_googlecalendar/SKILL.mdresources_googlesheets/SKILL.mdresources_linkedin/SKILL.mdresources_metamarketing/SKILL.mdresources_tiktokads/SKILL.mdMajor plugin (1 file in
plugins/major/skills/):resources_attio/SKILL.md(uses../../shared/skills/http-proxy/SKILL.mdrelative path)Context
The Stripe skill already documents three interaction methods (MCP tools, generated TypeScript clients, and the HTTP proxy). All other proxy-enabled resource skills only documented two. This PR brings them all in line with the Stripe pattern.