jb-ruleset-timeline-ui
Visual timeline explorer for Juicebox project ruleset history. Shows configuration evolution, upcoming changes, and enables ruleset comparison.
Install
mkdir -p .claude/skills/jb-ruleset-timeline-ui && curl -L -o skill.zip "https://mcp.directory/api/skills/download/8390" && unzip -o skill.zip -d .claude/skills/jb-ruleset-timeline-ui && rm skill.zipInstalls to .claude/skills/jb-ruleset-timeline-ui
About this skill
Juicebox V5 Ruleset Timeline UI
Visual timeline explorer for Juicebox project ruleset history. Shows the evolution of project configurations over time.
Uses Shared Components
This skill uses components from /shared/:
| Component | Purpose |
|---|---|
styles.css | Dark theme, cards, buttons, badges |
wallet-utils.js | Chain config, formatting utilities |
chain-config.json | RPC URLs, contract addresses |
abis/JBController.json | Ruleset query functions |
Overview
This skill generates vanilla JS/HTML interfaces for visualizing:
- Complete ruleset history for any project
- Timeline of configuration changes
- Upcoming queued rulesets
- Ruleset approval status
- Parameter comparisons between rulesets
Ruleset Timeline UI Template
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Juicebox Ruleset Timeline</title>
<link rel="stylesheet" href="/shared/styles.css">
<style>
/* Timeline-specific styles */
.project-header { display: none; }
.project-header.visible { display: block; }
.project-name { font-size: 1.5rem; font-weight: 600; color: var(--text-secondary); }
.project-id { color: var(--text-muted); margin-top: 5px; }
.timeline-container { position: relative; padding-left: 40px; }
.timeline-line { position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--jb-yellow) 0%, var(--border-color) 100%); }
.ruleset-card { position: relative; border-left: 3px solid var(--border-color); margin-bottom: var(--space-md); }
.ruleset-card.current { border-left-color: var(--success); background: linear-gradient(90deg, var(--success-bg) 0%, var(--bg-secondary) 20%); }
.ruleset-card.upcoming { border-left-color: var(--jb-yellow); background: linear-gradient(90deg, rgba(255,204,0,0.1) 0%, var(--bg-secondary) 20%); }
.ruleset-card.past { opacity: 0.7; }
.timeline-dot { position: absolute; left: -33px; top: 20px; width: 16px; height: 16px; border-radius: 50%; background: var(--border-color); border: 3px solid var(--bg-secondary); }
.ruleset-card.current .timeline-dot { background: var(--success); }
.ruleset-card.upcoming .timeline-dot { background: var(--jb-yellow); }
.ruleset-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: var(--space-md); }
.ruleset-title { font-size: 1.1rem; font-weight: 600; color: var(--text-secondary); }
.ruleset-status { padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.ruleset-status.current { background: var(--success-bg); color: var(--success); }
.ruleset-status.upcoming { background: rgba(255,204,0,0.2); color: var(--jb-yellow); }
.ruleset-status.past { background: rgba(136,136,136,0.2); color: var(--text-muted); }
.ruleset-status.pending { background: var(--warning-bg); color: var(--warning); }
.ruleset-dates { display: flex; gap: 20px; margin-bottom: var(--space-md); font-size: 13px; color: var(--text-muted); }
.params-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--space-md); }
.param-item { background: var(--bg-tertiary); padding: 12px; border-radius: var(--radius-md); }
.param-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
.param-value { font-size: 14px; font-weight: 600; color: var(--text-secondary); }
.param-value.changed { color: var(--jb-yellow); }
.expand-btn { background: none; border: 1px solid var(--border-color); color: var(--text-muted); padding: 8px 16px; border-radius: 6px; cursor: pointer; margin-top: var(--space-md); font-size: 13px; }
.expand-btn:hover { border-color: var(--jb-yellow); color: var(--jb-yellow); }
.expanded-details { display: none; margin-top: var(--space-md); padding-top: var(--space-md); border-top: 1px solid var(--border-color); }
.expanded-details.visible { display: block; }
.legend { display: flex; gap: 20px; margin-bottom: var(--space-md); font-size: 13px; }
.legend-item { display: flex; align-items: center; gap: 8px; }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; }
.legend-dot.current { background: var(--success); }
.legend-dot.upcoming { background: var(--jb-yellow); }
.legend-dot.past { background: #666; }
.compare-btn { background: var(--bg-tertiary); border: 1px solid var(--border-color); color: var(--text-primary); padding: 6px 12px; border-radius: 6px; cursor: pointer; font-size: 12px; margin-left: 10px; }
.compare-btn:hover { border-color: var(--jb-yellow); }
.compare-modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.8); z-index: 1000; padding: 20px; overflow-y: auto; }
.compare-modal.visible { display: flex; justify-content: center; align-items: flex-start; }
.compare-content { background: var(--bg-secondary); border-radius: var(--radius-lg); padding: 20px; max-width: 900px; width: 100%; margin-top: 40px; }
.compare-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-md); }
.close-btn { background: none; border: none; color: var(--text-muted); font-size: 24px; cursor: pointer; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 12px; text-align: left; border-bottom: 1px solid var(--border-color); }
.compare-table th { color: var(--text-muted); font-weight: 500; }
.compare-table td.changed { color: var(--jb-yellow); }
</style>
</head>
<body>
<div class="container">
<h1>Ruleset Timeline</h1>
<div class="card">
<div class="row">
<input type="number" id="projectId" placeholder="Project ID" min="1" style="flex: 1;">
<select id="chainSelect" style="width: 150px;">
<option value="1">Ethereum</option>
<option value="10">Optimism</option>
<option value="8453">Base</option>
<option value="42161">Arbitrum</option>
<option value="11155111">Sepolia</option>
</select>
<button onclick="loadTimeline()">Load Timeline</button>
</div>
</div>
<div class="card project-header" id="projectHeader">
<div class="project-name" id="projectName">-</div>
<div class="project-id" id="projectIdDisplay">-</div>
</div>
<div class="legend" id="legend" style="display: none;">
<div class="legend-item"><div class="legend-dot current"></div><span>Current Ruleset</span></div>
<div class="legend-item"><div class="legend-dot upcoming"></div><span>Queued/Upcoming</span></div>
<div class="legend-item"><div class="legend-dot past"></div><span>Past Rulesets</span></div>
</div>
<div id="timelineContainer"><div class="loading">Enter a project ID to load timeline</div></div>
</div>
<div class="compare-modal" id="compareModal">
<div class="compare-content">
<div class="compare-header">
<h2>Compare Rulesets</h2>
<button class="close-btn" onclick="closeCompare()">×</button>
</div>
<div id="compareBody"></div>
</div>
</div>
<script type="module">
import { createPublicClient, http, getContract, zeroAddress } from 'https://esm.sh/viem';
import { CHAIN_CONFIGS, loadChainConfig } from '/shared/wallet-utils.js';
const CONTROLLER_ABI = [
{ name: 'currentRulesetOf', type: 'function', stateMutability: 'view', inputs: [{ name: 'projectId', type: 'uint256' }], outputs: [{ name: 'ruleset', type: 'tuple', components: [{ name: 'cycleNumber', type: 'uint256' }, { name: 'id', type: 'uint256' }, { name: 'basedOnId', type: 'uint256' }, { name: 'start', type: 'uint256' }, { name: 'duration', type: 'uint256' }, { name: 'weight', type: 'uint256' }, { name: 'weightCutPercent', type: 'uint256' }, { name: 'approvalHook', type: 'address' }, { name: 'metadata', type: 'uint256' }] }, { name: 'metadata', type: 'tuple', components: [{ name: 'reservedRate', type: 'uint256' }, { name: 'cashOutTaxRate', type: 'uint256' }, { name: 'baseCurrency', type: 'uint256' }, { name: 'pausePay', type: 'bool' }, { name: 'pauseCashOut', type: 'bool' }, { name: 'pauseTransfers', type: 'bool' }, { name: 'allowOwnerMinting', type: 'bool' }, { name: 'allowTerminalMigration', type: 'bool' }, { name: 'allowSetTerminals', type: 'bool' }, { name: 'allowSetController', type: 'bool' }, { name: 'allowAddAccountingContexts', type: 'bool' }, { name: 'allowAddPriceFeed', type: 'bool' }, { name: 'ownerMustSendPayouts', type: 'bool' }, { name: 'holdFees', type: 'bool' }, { name: 'useTotalSurplusForCashOuts', type: 'bool' }, { name: 'useDataHookForPay', type: 'bool' }, { name: 'useDataHookForCashOut', type: 'bool' }, { name: 'dataHook', type: 'address' }, { name: 'metadata', type: 'uint256' }] }] },
{ name: 'upcomingRulesetOf', type: 'function', stateMutability: 'view', inputs: [{ name: 'projectId', type: 'uint256' }], outputs: [{ name: 'ruleset', type: 'tuple', components: [{ name: 'cycleNumber', type: 'uint256' }, { name: 'id', type: 'uint256' }, { name: 'basedOnId', type: 'uint256' }, { name: 'start', type: 'uint256' }, { name: 'duration', type: 'uint256' }, { name: 'weight', type: 'uint256' }, { name: 'weightCutPercent', type: 'uint256' }, { name: 'approvalHook', type: 'address' }, { name: 'metadata', type: 'uint256' }] }, { name: 'metadata', type: 'tuple', components: [{ name: 'reservedRate', type: 'uint256' }, { name: 'cashOutTaxRate', type: 'uint256' }, { name: 'baseCurrency', type: 'uint256' }, { name: 'pausePay', type: 'bool' }, { name: 'pauseCashOut', type: 'bool' }, { name: 'pauseTransfers', type: 'bool' }, { name: 'allowOwnerMinting', type: 'bool' }, { name: 'allowTerminalMigration', type: 'bool' }, { name: 'allowSetTerminals', type: 'bool' }, { name
---
*Content truncated.*
More by openclaw
View all skills by openclaw →You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
fastapi-templates
wshobson
Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.
Related MCP Servers
Browse all serversIntegrate Penpot with electronic design automation software for browsing, retrieving, and exporting UI designs easily us
Seamlessly interact with Visual Studio Code for coding, file diffing, project navigation, and command execution using ad
Create and organize Mermaid diagrams with real-time visualization, export, and git integration—perfect for mermaid js an
Automate android mobile application development in VS Code with Android Build—streamline building, testing & error repor
Android Project MCP Server: build Android projects and run Android tests directly in VS Code via MCP-compatible extensio
Enhance project tracking in Slack with CodeRide—seamless project retrieval, task operations, and workflow visualization
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.