From 12401af1041430637f1560cb4ec1a8816aabc5d4 Mon Sep 17 00:00:00 2001 From: Bryan Thompson Date: Fri, 17 Apr 2026 15:10:22 -0500 Subject: [PATCH] Add Oracle NetSuite agent skills (3 plugins) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds three NetSuite agent skills to the official marketplace: - netsuite-aiconnector-service-skill: runtime guidance for the NetSuite AI Service Connector (tool selection, output formatting, SuiteQL safety checklist) - netsuite-sdf-roles-and-permissions: SDF permission ID lookup and least-privilege role authoring (ADMI_, LIST_, REGT_, REPO_, TRAN_) - netsuite-uif-spa-reference: API/type reference for @uif-js/core and @uif-js/component All three ship from oracle/netsuite-suitecloud-sdk (packages/agent-skills/) using git-subdir + strict:false + skills[] — the same shape stagehand uses for skill-only distributions. --- .claude-plugin/marketplace.json | 60 +++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index aa34976..c8f3659 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -935,6 +935,66 @@ }, "homepage": "https://github.com/netlify/context-and-tools" }, + { + "name": "netsuite-aiconnector-service-skill", + "description": "NetSuite Intelligence skill — teaches AI the correct tool-selection order, output formatting, domain knowledge, multi-subsidiary and currency handling, and SuiteQL safety checklist for any session using the NetSuite AI Service Connector.", + "author": { + "name": "Oracle NetSuite" + }, + "category": "productivity", + "source": { + "source": "git-subdir", + "url": "https://github.com/oracle/netsuite-suitecloud-sdk.git", + "path": "packages/agent-skills", + "ref": "master", + "sha": "43bacf43763e1eedd0892b4652be3d45df94f0e7" + }, + "homepage": "https://github.com/oracle/netsuite-suitecloud-sdk", + "strict": false, + "skills": [ + "./netsuite-ai-connector-instructions" + ] + }, + { + "name": "netsuite-sdf-roles-and-permissions", + "description": "Use when generating or reviewing NetSuite SDF permission configurations — customrole XML, script deployment permissions, permkey values, permlevel choices, run-as role design, and least-privilege access. Confirms exact ADMI_/LIST_/REGT_/REPO_/TRAN_ permission IDs and validates permissions against bundled NetSuite reference data.", + "author": { + "name": "Oracle NetSuite" + }, + "category": "development", + "source": { + "source": "git-subdir", + "url": "https://github.com/oracle/netsuite-suitecloud-sdk.git", + "path": "packages/agent-skills", + "ref": "master", + "sha": "43bacf43763e1eedd0892b4652be3d45df94f0e7" + }, + "homepage": "https://github.com/oracle/netsuite-suitecloud-sdk", + "strict": false, + "skills": [ + "./netsuite-sdf-roles-and-permissions" + ] + }, + { + "name": "netsuite-uif-spa-reference", + "description": "Use when building, modifying, or debugging NetSuite UIF SPA components. Provides API/type lookup for @uif-js/core and @uif-js/component — constructors, methods, props, enums, hooks, and component options.", + "author": { + "name": "Oracle NetSuite" + }, + "category": "development", + "source": { + "source": "git-subdir", + "url": "https://github.com/oracle/netsuite-suitecloud-sdk.git", + "path": "packages/agent-skills", + "ref": "master", + "sha": "43bacf43763e1eedd0892b4652be3d45df94f0e7" + }, + "homepage": "https://github.com/oracle/netsuite-suitecloud-sdk", + "strict": false, + "skills": [ + "./netsuite-uif-spa-reference" + ] + }, { "name": "nightvision", "description": "Skills for working with NightVision, a DAST and API Discovery platform that finds exploitable vulnerabilities in web applications and REST APIs",