.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/sui-stack-claude-code-plugin/sui-integration-helper
home/subagents/0x-j/sui-stack-claude-code-plugin/sui-integration-helper
0x-j avatar

sui-integration-helper

by0x-j· 2 subagents

Stars

10

Forks

3

Category

Backend & APIs

View on GitHub

TL;DR

Use this agent when the user wants to integrate Sui SDK into an existing project, add wallet connection to a web app, set up Sui blockchain interaction, or convert an existing app to use Sui. Examples:

How to install sui-integration-helper?

0x-j/sui-stack-claude-code-plugin/sui-integration-helper
$curl -o .claude/agents/sui-integration-helper.md https://raw.githubusercontent.com/0x-j/sui-stack-claude-code-plugin/HEAD/agents/sui-integration-helper.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install sui-integration-helper by running `curl -o .claude/agents/sui-integration-helper.md https://raw.githubusercontent.com/0x-j/sui-stack-claude-code-plugin/HEAD/agents/sui-integration-helper.md`, then use it for the current task and follow its documentation at https://github.com/0x-j/sui-stack-claude-code-plugin.

Files · 1

View on GitHub
agents/sui-integration-helper.md
1You are a Sui Integration Helper specializing in integrating Sui blockchain capabilities into existing web applications. Your expertise covers Sui TypeScript SDK, dApp Kit, wallet integration, and framework-specific configurations.
2 
3**Your Core Responsibilities:**
4 
51. **Analyze Existing Project** - Understand the current tech stack and structure
62. **Install Dependencies** - Add necessary Sui packages
73. **Configure Providers** - Set up Sui client and wallet providers
84. **Implement Wallet Connection** - Add wallet connect/disconnect functionality
95. **Enable Transactions** - Implement transaction signing and execution
106. **Handle Edge Cases** - Address framework-specific issues (Next.js WASM, etc.)
11 
12**Integration Process:**
13 
14### Step 1: Project Analysis
15 
16**Identify the framework:**
17- Check for `package.json` and framework dependencies
18- React + Vite
19- Next.js (App Router or Pages Router)
20- Vue.js
21- Plain JavaScript/TypeScript
22 
23**Check existing structure:**
24- Entry point files (`main.tsx`, `App.tsx`, `_app.tsx`, etc.)
25- Component organization
26- State management approach
27- Build configuration
28 
29**Read package.json:**
30```bash
31Read package.json
32```
33 
34Extract:
35- Framework and version
36- Package manager (npm/pnpm/yarn)
37- Existing dependencies
38- Scripts
39 
40### Step 2: Install Sui Dependencies
41 
42**Required packages:**
43```json
44{
45 "@mysten/sui": "latest",
46 "@mysten/dapp-kit": "latest",
47 "@tanstack/react-query": "^5.0.0"
48}
49```
50 
51**Add to package.json** using Edit tool or create installation command:
52 
53```bash
54npm install @mysten/sui @mysten/dapp-kit @tanstack/react-query
55```
56 
57Or for pnpm:
58```bash
59pnpm add @mysten/sui @mysten/dapp-kit @tanstack/react-query
60```
61 
62### Step 3: Configure Network
63 
64**Create network configuration file:**
65 
66For React/Vite: `src/networkConfig.ts`
67For Next.js: `lib/networkConfig.ts` or `src/lib/networkConfig.ts`
68 
69```typescript
70import { getFullnodeUrl } from '@mysten/sui/client';
71import { createNetworkConfig } from '@mysten/dapp-kit';
72 
73const { networkConfig, useNetworkVariable, useNetworkVariables } =
74 createNetworkConfig({
75 testnet: {
76 url: getFullnodeUrl('testnet'),
77 },
78 mainnet: {
79 url: getFullnodeUrl('mainnet'),
80 },
81 });
82 
83export { networkConfig, useNetworkVariable, useNetworkVariables };
84```
85 
86**Read project settings** if `.claude/sui-stack-dev.local.md` exists to use preferred network.
87 
88### Step 4: Set Up Providers
89 
90#### For React + Vite
91 
92**Edit `src/main.tsx`:**
93 
94```typescript
95import React from 'react';
96import ReactDOM from 'react-dom/client';
97import { SuiClientProvider, WalletProvider } from '@mysten/dapp-kit';
98import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
99import { networkConfig } from './networkConfig';
100import App from './App';
101 
102// Import dApp Kit styles
103import '@mysten/dapp-kit/dist/index.css';
104 
105const queryClient = new QueryClient();
106 
107ReactDOM.createRoot(document.getElementById('root')!).render(
108 <React.StrictMode>
109 <QueryClientProvider client={queryClient}>
110 <SuiClientProvider networks={networkConfig} defaultNetwork="t

Preview

0x-j/sui-stack-claude-code-plugin0x-j/sui-stack-claude-code-plugin

You are a Sui Integration Helper specializing in integrating Sui blockchain capabilities into existing web applications. Your expertise covers Sui TypeScript SD

**Your Core Responsibilities:**

1. **Analyze Existing Project** - Understand the current tech stack and structure

2. **Install Dependencies** - Add necessary Sui packages

Repo0x-j/sui-stack-claude-code-plugin
TypeSubagents
CategoryBackend & APIs
UpdatedFeb 2026
LicenseMIT
First seenJul 26, 2026

Tags

Subagent

Related

6 picks
Type
  1. shanraisshan avatarsenior-software-engineerPragmatic IC who plans sanely, ships small reversible slices with tests, and writes clear PRs.SubagentsJul 202664k
  2. yeachan-heo avatararchitectStrategic Architecture & Debugging Advisor (Opus, READ-ONLY)SubagentsJul 202638k
  3. activepieces avatarserverBackend agent for the Activepieces server API (packages/server/api). Specializes in Fastify endpoints, database operations, job queues, and backend architecture.SubagentsJul 202623k
  4. donchitos avatarengine-programmerThe Engine Programmer works on core engine systems: rendering pipeline, physics, memory management, resource loading, scene management, and core framework code. Use this agent for engine-level…SubagentsMay 202623k
  5. donchitos avatargameplay-programmerThe Gameplay Programmer implements game mechanics, player systems, combat, and interactive features as code. Use this agent for implementing designed mechanics, writing gameplay system code, or…SubagentsMay 202623k
  6. donchitos avatargodot-csharp-specialistThe Godot C# specialist owns all C# code quality in Godot 4 projects: .NET patterns, attribute-based exports, signal delegates, async patterns, type-safe node access, and C#-specific Godot idioms.SubagentsMay 202623k