← 返回创作者
rotifer-protocol

@rotifer-protocol

加入时间 2026年3月14日

创作者评分
2.3045
排名
#1 / 5
基因数
59
下载量
1
59
奖励
+0.20

已发布的基因

59
url-extractorv0.1.0
Native

Extracts and categorizes all URLs from text content, with optional validation of link accessibility.

text.extract评分 0.580 次下载
3 个月前
text-summarizerv0.1.0
Native

Extracts key sentences from text to produce a concise summary within a configurable word limit.

text.summarize评分 0.611 次下载
3 个月前
markdown-formatterv0.1.0
Native

Normalizes Markdown formatting: fixes heading levels, standardizes list markers, wraps long lines, and enforces consistent spacing.

text.format评分 0.530 次下载
3 个月前
json-validatorv0.1.0
Native

Validates JSON data against a JSON Schema definition, returning detailed validation errors with paths.

data.validate评分 0.540 次下载
3 个月前
genesis-web-search-litev0.1.0
Native

Lightweight web search returning a single best-match answer with source attribution.

search评分 0.580 次下载
3 个月前
genesis-l0-constraintv0.1.0
Native

Validate a Gene against L0 safety constraints including memory limits, fuel budgets, and host function permissions.

safety评分 0.700 次下载
3 个月前
genesis-code-formatv0.1.0
Native

Format source code according to language-specific conventions. Supports TypeScript, JavaScript, JSON, Markdown, and Rust.

tooling评分 0.590 次下载
3 个月前
code-complexityv0.1.0
Native

Analyzes source code complexity using cyclomatic complexity, lines of code, and nesting depth metrics.

code.analyze评分 0.650 次下载
3 个月前
source-linkerv0.1.0
Native

Maps source file paths to human-readable titles and browsable URLs. Pure mapping logic, no network dependency.

content.linking评分 0.530 次下载
3 个月前
doc-retrievalv0.1.0
Hybrid

Retrieves relevant documentation chunks via vector similarity search. Computes embeddings and queries Supabase match_documents RPC.

ai.retrieval评分 0.410 次下载
3 个月前
answer-synthesizerv0.1.0
Hybrid

Synthesizes a structured answer from retrieved document chunks using an LLM. Provider-agnostic: supports Claude and OpenAI via environment configuration.

ai.synthesis评分 0.500 次下载
3 个月前
particle-spatialv0.1.0
Native

N-body gravitational simulation using spatial hash grid. Partitions particles into cells based on bounding box; each particle interacts only with neighbors in its 3x3 cell neighborhood. Reduces pairwise evaluations for spatially clustered distributions.

sim.particle评分 0.740 次下载1291.2 KB
3 个月前
particle-barneshutv0.1.0
Native

N-body gravitational simulation using Barnes-Hut quadtree approximation. Groups distant particles into tree nodes for O(n log n) force computation per step. Balances accuracy and speed via configurable opening angle theta.

sim.particle评分 0.740 次下载1304.0 KB
3 个月前
particle-brutev0.1.0
Native

N-body gravitational simulation using brute-force all-pairs direct summation. Computes exact O(n^2) pairwise interactions per step — maximum accuracy baseline. Supports preset configurations (solar system, binary star, galaxy cluster, collision).

sim.particle评分 0.740 次下载1265.3 KB
3 个月前
evolve-life-bitwisev0.2.0
Native

Conway's Game of Life simulator using bitwise-packed rows. Stores 32 cells per integer for cache-friendly bulk neighbor counting. Optimized for dense, high-throughput simulations on medium-to-large grids.

evolve.life评分 0.740 次下载1276.9 KB
3 个月前
evolve-life-sparsev0.2.0
Native

Conway's Game of Life simulator using sparse set representation. Only tracks live cells and their neighbors, skipping empty regions entirely. Excels on large grids with low population density.

evolve.life评分 0.740 次下载1268.0 KB
3 个月前
evolve-lifev0.2.0
Native

Conway's Game of Life simulator. Computes cellular automaton evolution from an initial grid state over N generations. Supports preset patterns (glider, pulsar, random) and custom grids. Pure computation — ideal Native Gene benchmark.

evolve.life评分 0.740 次下载1269.4 KB
3 个月前
orchv0.1.0
Wrapped

Intelligent skill orchestration hub. Automatically identifies and dispatches the most suitable skills based on user intent. Analyzes conversation context, matches task types, and combines multiple skills for complex tasks.

orchestration.dispatch评分 0.370 次下载
4 个月前
license-advisorv0.1.0
Wrapped

Analyze project requirements and recommend suitable open source licenses (MIT, Apache, GPL, AGPL, LGPL, MPL, BSL, SSPL, etc.). Use when the user asks about licensing, choosing a license, open source strategy, or mentions license names like MIT/GPL/Apache.

legal.licensing评分 0.490 次下载
4 个月前
algorithmic-artv0.1.0
Wrapped

Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists

creative.generative评分 0.480 次下载
4 个月前
prompt-engineerv0.1.0
Wrapped

Design and optimize AI prompts for maximum effectiveness and cost efficiency. Create structured outputs, few-shot examples, and prompt templates. Use when writing prompts, designing AI features, optimizing token usage, or when the user mentions prompt, system message, or AI output format.

ai.prompting评分 0.500 次下载
4 个月前
project-reviewerv0.1.0
Wrapped

Central project review hub coordinating all skills including product-manager. Perform 360-degree review covering product documentation, architecture, UI, security, performance, testing, and more. Output structured reports with CRITICAL/WARNING/SUGGESTION feedback. Use when reviewing code, PRDs, or when the user asks for project review, code review, architecture assessment, or full audit.

product.review评分 0.490 次下载
4 个月前
product-managerv0.1.0
Wrapped

World-class product manager assistant for Web2/Web3/AI domains. Writes PRDs, user stories, feature specs, and product roadmaps. Performs requirements analysis and prioritization.

product.management评分 0.490 次下载
4 个月前
doc-coauthoringv0.1.0
Wrapped

Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.

docs.collaboration评分 0.380 次下载
4 个月前
docs-writerv0.1.0
Wrapped

Write technical documentation including README, API docs, and changelogs. Create clear, structured documentation for AI and Web3 projects. Use when writing documentation, creating README, or when the user mentions docs, documentation, readme, or api docs.

docs.technical评分 0.480 次下载
4 个月前
git-workflowv0.1.0
Wrapped

Standardize Git workflow with conventional commits, PR templates, branch naming, and changelog generation. Use when committing code, creating PRs, managing releases, or when the user mentions git, commit, pull request, branch, or changelog.

devops.git评分 0.500 次下载
4 个月前
devops-automatorv0.1.0
Wrapped

Automate CI/CD pipelines, Docker configuration, and deployment for Next.js AI/Web3 apps. Setup GitHub Actions, Vercel, and environment management. Use when setting up deployment, CI/CD, or when the user mentions deploy, docker, github actions, vercel, or ci/cd.

devops.cicd评分 0.470 次下载
4 个月前
performance-optimizerv0.1.0
Wrapped

Optimize web performance including Core Web Vitals, bundle size, and runtime efficiency. Analyze and improve LCP, FID, CLS metrics. Use when optimizing performance, reducing bundle size, or when the user mentions slow, performance, loading, lighthouse, or web vitals.

code.performance评分 0.410 次下载
4 个月前
debuggerv0.1.0
Wrapped

Systematic debugging guide for AI and Web3 applications. Diagnose errors, analyze logs, and identify root causes. Use when troubleshooting issues, analyzing errors, or when the user mentions bug, error, not working, debug, or fix.

code.debug评分 0.410 次下载
4 个月前
security-auditorv0.1.0
Wrapped

Audit code for security vulnerabilities in AI and Web3 applications. Check for prompt injection, private key exposure, input validation, and common attack vectors. Use when reviewing security, auditing code, or when the user mentions security, vulnerability, attack, or protection.

code.security评分 0.380 次下载
4 个月前
tech-leadv0.1.0
Wrapped

Enforce code consistency, naming conventions, and hygiene for AI and Web3 projects. Standardize AI SDK usage, Web3 patterns (wagmi/ethers), and TypeScript types. Use when refactoring code, reviewing for consistency, or when the user mentions code quality, standards, or linting.

code.quality评分 0.360 次下载
4 个月前
testing-strategistv0.1.0
Wrapped

Design testing strategies for AI and Web3 applications. Create test cases, mock data, and CI configurations. Use when writing tests, setting up test infrastructure, or when the user mentions testing, test coverage, unit test, integration test, or e2e.

code.testing评分 0.420 次下载
4 个月前
data-modelerv0.1.0
Wrapped

Design database schemas with Prisma for AI and Web3 applications. Define models, relations, indexes, and migrations. Use when designing databases, creating Prisma schemas, or when the user mentions database, schema, model, prisma, or migration.

code.database评分 0.510 次下载
4 个月前
api-designerv0.1.0
Wrapped

Design RESTful and tRPC APIs with consistent patterns, error handling, and documentation. Define endpoint structure, response formats, and error codes. Use when designing APIs, creating endpoints, or when the user mentions API, endpoint, REST, tRPC, or response format.

code.api评分 0.480 次下载
4 个月前
logic-architectv0.1.0
Wrapped

Ensure code has sound business logic, data flow, and technical implementation for AI and Web3 projects. Focus on architecture, edge cases, state management, agent patterns, and wallet safety. Use when writing core logic, reviewing architecture, implementing APIs, or when the user mentions logic, architecture, data flow, or asks for code review ignoring UI.

code.architecture评分 0.410 次下载
4 个月前
auto-coderv0.1.0
Wrapped

Execute continuous AI-powered code generation with intelligent iteration loops. Always runs in iterative mode - generates code, validates with quality skills (testing-strategist, tech-lead, logic-architect, debugger), and repeats until success or limits reached. Use when user wants to implement features, write code, or automate programming tasks.

code.automation评分 0.400 次下载
4 个月前
seo-optimizerv0.2.0
Native

Optimize content for search engines. Improve keyword usage, meta descriptions, headings, and content structure for better ranking. Use when creating web content, blog posts, or any content intended for search discovery.

content.seo评分 0.570 次下载
4 个月前
fact-checkerv0.1.0
Wrapped

Verify facts, claims, and sources in written content. Ensure accuracy and credibility of information. Use when writing news, reports, or any content where factual accuracy is critical.

content.factcheck评分 0.400 次下载
4 个月前
citation-managerv0.2.0
Native

Manage academic citations and references. Format citations according to APA, MLA, Chicago, GB/T 7714 and other styles. Use when writing academic papers or any content requiring proper source attribution.

content.citation评分 0.690 次下载
4 个月前
plagiarism-checkerv0.1.0
Wrapped

Check content for plagiarism and ensure originality. Identify potential copied content and guide proper attribution. Use when writing academic papers, articles, or any content requiring original work.

content.integrity评分 0.360 次下载
4 个月前
tone-analyzerv0.1.0
Wrapped

Analyze and adjust content tone to match target audience and purpose. Ensure appropriate voice, formality, and emotional impact. Use when writing for specific audiences or when tone consistency is critical.

content.tone评分 0.450 次下载
4 个月前
readability-analyzerv0.2.0
Native

Analyze and improve content readability. Evaluate sentence complexity, word choice, and overall accessibility. Use when ensuring content is appropriate for target audience reading level.

content.readability评分 0.540 次下载
4 个月前
style-optimizerv0.1.0
Wrapped

Optimize writing style for clarity, consistency, and readability. Improve sentence structure, word choice, and flow. Use when polishing written content for better reader experience.

content.style评分 0.490 次下载
4 个月前
grammar-checkerv0.2.0
Native

Check grammar, spelling, and punctuation in written content. Identify common errors and provide corrections. Use when reviewing any written content for grammatical accuracy.

content.grammar评分 0.550 次下载
4 个月前
translatorv0.1.0
Wrapped

Translate and localize content between languages. Ensure cultural appropriateness and maintain original meaning. Use when translating documents, adapting content for different markets, or creating bilingual content.

content.translation评分 0.460 次下载
4 个月前
copywriterv0.1.0
Wrapped

Write compelling marketing copy, social media content, and advertising materials. Master platform-specific styles and persuasion techniques. Use when creating content for WeChat, Xiaohongshu, Douyin, or other marketing channels.

content.marketing评分 0.440 次下载
4 个月前
creative-writerv0.1.0
Wrapped

Write creative content including stories, scripts, and narrative works. Master storytelling techniques, character development, and emotional expression. Use when creating fiction, screenplays, or any narrative-driven content.

content.creative评分 0.360 次下载
4 个月前
business-writerv0.1.0
Wrapped

Write professional business documents including reports, proposals, and summaries. Create clear, data-driven content for workplace communication. Use when writing work reports, annual summaries, business plans, or OKRs.

content.business评分 0.420 次下载
4 个月前
academic-writerv0.1.0
Wrapped

Write academic papers, research reports, and scholarly content. Follow academic conventions, citation styles, and formal writing standards. Use when writing thesis, dissertations, journal articles, or research documents.

content.academic评分 0.430 次下载
4 个月前
auto-writerv0.1.0
Wrapped

Execute continuous AI-powered content generation with intelligent iteration loops. Analyzes writing tasks, selects appropriate skills (grammar-checker, style-optimizer, domain-specific writers), and iterates until quality standards are met. Use when user wants to write documents, articles, reports, or any text content.

content.automation评分 0.470 次下载
4 个月前
web3-componentsv0.1.0
Wrapped

Web3 interface component library. Includes wallet connection, network switching, transaction status, and gas estimation components for DApp applications.

ui.web3评分 0.520 次下载
4 个月前
ai-componentsv0.1.0
Wrapped

AI interface component library. Includes streaming text, chat bubbles, thinking indicators, reasoning display, and token usage components for AI conversation applications.

ui.ai评分 0.510 次下载
4 个月前
uiux-designerv0.1.0
Wrapped

Unified UI/UX design entry point. Dispatches design tokens, components, and UX pattern sub-skills via style dimension parameters. Supports presets, fine-tuning, and full customization.

ui.design评分 0.360 次下载
4 个月前
brand-personalityv0.1.0
Wrapped

Parameterized brand style system. Generates infinite style combinations through 6 dimensions: color temperature, border-radius, motion, density, emotion, and contrast.

ui.branding评分 0.390 次下载
4 个月前
ui-componentsv0.1.0
Wrapped

Parameterized UI component library. Dynamically generates buttons, inputs, cards, and other component styles based on style parameters.

ui.components评分 0.460 次下载
4 个月前
ux-patternsv0.1.0
Wrapped

Parameterized UX interaction pattern library. Generates contextual copy and motion effects based on emotional tone and motion intensity parameters.

ux.interaction评分 0.500 次下载
4 个月前
design-tokensv0.2.0
Native

Parameterized design token system. Dynamically generates CSS variables for colors, border-radius, spacing, and typography based on brand parameters.

ui.design评分 0.670 次下载
4 个月前
genesis-file-readv0.1.0
Native

Read file contents from the local filesystem with configurable encoding. Returns content, size, and encoding metadata.

filesystem评分 0.600 次下载
4 个月前
genesis-web-searchv0.1.0
Native

Search the web and return structured results with titles, URLs, and snippets. Supports configurable result count.

search评分 0.650 次下载
4 个月前