nexus-elements-view-history

📁 availproject/nexus-elements 📅 9 days ago
9
总安装量
4
周安装量
#31253
全站排名
安装命令
npx skills add https://github.com/availproject/nexus-elements --skill nexus-elements-view-history

Agent 安装分布

claude-code 4
opencode 3
cursor 3
gemini-cli 2
replit 1

Skill 文档

Nexus Elements – View History

Overview

Install the ViewHistory component to display Nexus intent history as a modal or inline list.

Prerequisites

  • NexusProvider installed and initialized on wallet connect.
  • Wallet connection configured.

Install (shadcn registry)

  1. Ensure shadcn/ui is initialized (components.json exists).
  2. Ensure registry mapping exists:
"registries": {
  "@nexus-elements/": "https://elements.nexus.availproject.org/r/{name}.json"
}
  1. Install:
npx shadcn@latest add @nexus-elements/view-history

Alternative:

npx shadcn@latest add https://elements.nexus.availproject.org/r/view-history.json

Manual install (no shadcn)

  1. Download https://elements.nexus.availproject.org/r/view-history.json.
  2. Create each file in files[].target with files[].content.
  3. Install dependencies listed in dependencies and each registryDependencies item.

Usage

import ViewHistory from "@/components/view-history/view-history";

<ViewHistory viewAsModal={false} className="w-full" />

SDK flow mapping

  • Fetches intent history with sdk.getMyIntents() (requests-for-funds list).
  • Intended for displaying status updates, explorer links, and retries.

Props (ViewHistoryProps)

  • viewAsModal?: render as modal (default true)
  • className?: optional container className

Notes

  • There is no view-intent component; use ViewHistory for intent history.