🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@ulinkly/setup

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ulinkly/setup

Set up ULink deep linking with your AI coding assistant (Claude Code, Cursor, Antigravity)

latest
Source
npmnpm
Version
0.1.8
Version published
Weekly downloads
3
-80%
Maintainers
1
Weekly downloads
 
Created
Source

One-command AI-assisted setup for ULink deep linking. Works with Claude Code, Cursor, Codex, OpenCode, and 50+ other AI coding tools.

Quick Start

npx skills add https://ulink.ly

Installs the ULink onboarding skill via the open agent-skills CLI. Then open your AI assistant in your project directory and ask it to "setup ulink" — the agent walks you through detecting your platform, connecting to your ULink project, configuring dashboard settings, editing local files, and verifying deep links.

Heads up — keep the https://. The agent-skills CLI parses bare hostnames as GitHub shorthand. npx skills add ulink.ly will fail with a clone error; npx skills add https://ulink.ly triggers the well-known endpoint correctly.

What the AI Does

  • Detect project — scans your directory to identify Flutter, React Native, iOS, or Android
  • Connect to ULink — authenticates via MCP and connects to your ULink project
  • Select domain — pick an existing domain or create a new one
  • Configure platforms — sets up Associated Domains (iOS), App Links (Android), or both (Flutter / React Native)
  • Edit local files — proposes changes and applies them only after your approval
  • Verify — runs the ULink CLI to validate your deep link configuration
  • Summarize — shows everything that was configured and next steps

Alternative installs

Install from GitHub

npx skills add FlywheelStudio/ulink-ai-setup

Same skill, fetched from this repo directly. Useful if you want to pin to a specific commit.

Legacy installer (Claude Code, Cursor, Antigravity only)

npx @ulinkly/setup

Older one-liner with narrower agent support. Prefer npx skills add https://ulink.ly above for the broader agent-skills ecosystem.

Manual setup per agent

The skills/setup-ulink/SKILL.md file is a standard agent-skills SKILL.md — copy it into your agent's skills directory, and add the ULink MCP server to that agent's MCP config:

{
  "mcpServers": {
    "ulink": {
      "command": "npx",
      "args": ["-y", "@ulinkly/mcp-server@0.1.17"]
    }
  }
}

Common MCP config locations:

  • Claude Code~/.claude.json (or per-project .mcp.json)
  • Cursor~/.cursor/mcp.json
  • Antigravity~/.gemini/antigravity/mcp_config.json
  • Other agents — see your agent's MCP config docs

Restart the agent after editing, then ask: "setup ulink".

Claude Code marketplace

claude plugin marketplace add FlywheelStudio/ulink-ai-setup
claude plugin install ulink-onboarding@ulink

Then run /setup-ulink in your project. Equivalent to the one-liner above for Claude Code users.

Where the skill is published

ChannelInstall command
ulink.ly well-known endpointnpx skills add https://ulink.ly
GitHubnpx skills add FlywheelStudio/ulink-ai-setup
npmnpx @ulinkly/setup (legacy installer)
Claude Code marketplaceclaude plugin install ulink-onboarding@ulink

The skill uses the ULink CLI for verification. If not installed, the skill will offer to install it for you:

curl -fsSL https://ulink.ly/install.sh | bash

Supported Platforms

  • Flutter — detects pubspec.yaml, configures iOS + Android
  • React Native / Expo — detects package.json + app.json, configures iOS + Android (Expo config plugin or manual native setup)
  • Native iOS — detects Xcode projects, sets up Associated Domains and URL schemes
  • Native Android — detects Gradle projects, sets up App Links and intent filters

License

MIT

Keywords

ulink

FAQs

Package last updated on 22 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts