惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
MyScale Blog
MyScale Blog
博客园 - Franky
The Cloudflare Blog
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
WordPress大学
WordPress大学
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
The Blog of Author Tim Ferriss
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed
Martin Fowler
Martin Fowler
aimingoo的专栏
aimingoo的专栏
J
Java Code Geeks
腾讯CDC
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers Blog
博客园 - 【当耐特】
美团技术团队
云风的 BLOG
云风的 BLOG

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - risingwavelabs/agent-skills: Agent Skills for Ri...
WavyPeng · 2026-04-20 · via Hacker News - Newest: "AI"

Agent Skills for RisingWave

Docs | Installation | Skills | Contributing

License Slack X Validate


Official Agent Skills for RisingWave — the streaming SQL database. These skills help AI coding agents adopt best practices when building real-time pipelines, designing materialized views, configuring CDC ingestion, and optimizing streaming workloads.

Compatible with Claude Code, GitHub Copilot, Cursor, Windsurf, Gemini CLI, and 18+ other AI agents.

Installation

npx skills add risingwavelabs/agent-skills

The CLI auto-detects installed agents and prompts you to select where to install.

Install a specific skill

npx skills add risingwavelabs/agent-skills --skill risingwave
npx skills add risingwavelabs/agent-skills --skill risingwave-best-practices

Claude Code Plugin

claude plugin marketplace add risingwavelabs/agent-skills
claude plugin install risingwave@risingwave-agent-skills
claude plugin install risingwave-best-practices@risingwave-agent-skills

What is this?

Agent Skills are packaged instructions that extend AI coding agents with domain-specific expertise. This repository provides skills for RisingWave — covering connections, the Source → Materialized View → Sink pipeline pattern, CDC ingestion, time-windowed aggregations, watermarks, and streaming SQL best practices.

When an agent loads these skills, it understands RisingWave-specific concepts that differ from standard PostgreSQL: port 4566, CREATE SOURCE vs CREATE TABLE, EMIT ON WINDOW CLOSE, watermark semantics, BACKGROUND_DDL, and more.

Skills follow the open specification at agentskills.io.

Available Skills

risingwave

Core skill covering connections, MCP server setup, and the fundamental pipeline pattern.

Use when:

  • Connecting to RisingWave (port 4566, psql, JDBC, any PostgreSQL client)
  • Setting up the RisingWave MCP server
  • Creating sources, materialized views, or sinks
  • Ingesting from Kafka, CDC databases (PostgreSQL, MySQL), or cloud storage
  • Writing time-windowed aggregations (TUMBLE, HOP, SESSION)
  • Using watermarks and EMIT ON WINDOW CLOSE
  • Querying the system catalog (rw_catalog)
risingwave-best-practices

14 rules covering schema design, materialized view patterns, CDC setup, sink configuration, and performance — prioritized by impact.

Category Rules Impact
Schema Design 3 CRITICAL / HIGH
Materialized Views 3 CRITICAL / HIGH
Streaming SQL 3 CRITICAL / HIGH
Sink Configuration 2 HIGH / MEDIUM
Performance 3 HIGH / MEDIUM

Use when:

  • Designing sources, tables, or pipelines
  • Writing or reviewing materialized views
  • Configuring CDC from PostgreSQL or MySQL
  • Setting up sinks to Kafka, Iceberg, or other destinations
  • Debugging slow backfills or high-volume sink output

Quick Start

After installation, your AI agent will reference these skills when working with RisingWave. Example prompts:

Create a Kafka source for user events and a materialized view that counts events per minute
Set up PostgreSQL CDC into RisingWave and join the CDC table with a Kafka stream
Why is my EMIT ON WINDOW CLOSE materialized view not producing any output?
Create an Iceberg sink for my fraud detection materialized view
Review this RisingWave pipeline for best practices

Supported Agents

Skills are agent-agnostic — the same skill works across all supported AI coding assistants:

Agent Config Directory
Claude Code .claude/skills/
Cursor .cursor/skills/
Windsurf .windsurf/skills/
GitHub Copilot .github/skills/
Gemini CLI .gemini/skills/
Cline .cline/skills/
Codex .codex/skills/
Goose .goose/skills/
Roo Code .roo/skills/
OpenHands .openhands/skills/

And others including Amp, Kiro CLI, Trae, Zencoder, and more.

Contributing

See CONTRIBUTING.md to add new rules, improve existing skills, or propose a new skill.

License

Apache 2.0 — see LICENSE for details.