contributing — for Claude Code contributing, community, for Claude Code, ide skills, Development, Guidelines, component, library, Building, templates

v1.0.0

About this Skill

Perfect for Full Stack Agents needing guidelines for developing Rails UI components with ERB partials, Tailwind CSS, and Stimulus. Kiso component conventions and development workflow. Points to the right docs for building, reviewing, and shipping components.

Features

Guidelines for contributing to the Kiso component library.
Where to find what
Building a component project/component-creation.md — full workflow, templates, checklist
Reviewing a component project/component-review.md — 12-point checklist, common mistakes
Design system rules project/design-system.md — compound variants, tokens, spatial system

# Core Topics

steveclarke steveclarke
[1]
[0]
Updated: 3/12/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Locale and body language aligned
Review Score
8/11
Quality Score
36
Canonical Locale
en
Detected Body Locale
en

Perfect for Full Stack Agents needing guidelines for developing Rails UI components with ERB partials, Tailwind CSS, and Stimulus. Kiso component conventions and development workflow. Points to the right docs for building, reviewing, and shipping components.

Core Value

Empowers agents to develop and review Rails UI components using the Kiso component library, leveraging ERB partials, Tailwind CSS, and progressive Stimulus, while adhering to design system rules and architecture patterns.

Ideal Agent Persona

Perfect for Full Stack Agents needing guidelines for developing Rails UI components with ERB partials, Tailwind CSS, and Stimulus.

Capabilities Granted for contributing

Building custom UI components with ERB partials
Reviewing components using the 12-point checklist
Implementing design system rules for compound variants and tokens

! Prerequisites & Limits

  • Requires knowledge of Rails UI components
  • Specific to Kiso component library
  • Familiarity with ERB partials, Tailwind CSS, and Stimulus necessary

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is contributing?

Perfect for Full Stack Agents needing guidelines for developing Rails UI components with ERB partials, Tailwind CSS, and Stimulus. Kiso component conventions and development workflow. Points to the right docs for building, reviewing, and shipping components.

How do I install contributing?

Run the command: npx killer-skills add steveclarke/kiso/contributing. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for contributing?

Key use cases include: Building custom UI components with ERB partials, Reviewing components using the 12-point checklist, Implementing design system rules for compound variants and tokens.

Which IDEs are compatible with contributing?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for contributing?

Requires knowledge of Rails UI components. Specific to Kiso component library. Familiarity with ERB partials, Tailwind CSS, and Stimulus necessary.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add steveclarke/kiso/contributing. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use contributing immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

contributing

Install contributing, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Kiso Development

Guidelines for contributing to the Kiso component library.

Where to find what

TopicFile
Building a componentproject/component-creation.md — full workflow, templates, checklist
Reviewing a componentproject/component-review.md — 12-point checklist, common mistakes
Design system rulesproject/design-system.md — compound variants, tokens, spatial system
Architecture patternsproject/component-strategy.md — ClassVariants, override system
Per-slot ui: overridesproject/decisions/004-per-slot-ui-prop.md — ADR for ui: prop
Testing strategyproject/testing-strategy.md — tier system, E2E requirements
Docs page templateproject/component-doc-template.md — structure and guidelines
All conventionsCLAUDE.md — framework mindset, naming, code rules

Getting started with a new component

Use bin/rails generate kiso:framework_component name to scaffold the initial files, then fill in the theme and partial.

Project structure

lib/kiso/themes/              Ruby theme modules (ClassVariants definitions)
app/views/kiso/components/    ERB partials (rendered via kui() helper)
app/assets/tailwind/kiso/     engine.css — shipped with gem (fonts + all color tokens)
app/helpers/kiso/             kui(), kiso_prepare_options() helpers
app/javascript/controllers/kiso/  Stimulus controllers (namespaced kiso--)
app/javascript/kiso/utils/    Shared JS utilities (positioning, highlight, focusable)
test/components/previews/kiso/  Lookbook previews + templates
skills/kiso/                  AI skill (update when adding components)
project/                      Architecture docs, design system, decisions
docs/                         Bridgetown docs site (published documentation)
lookbook/                     Lookbook dev app (bin/dev → port 4001)

CSS architecture

app/assets/tailwind/kiso/engine.css is what the gem ships. It contains Geist fonts, all default color tokens (@theme), dark mode overrides (.dark {}), and @source directives for Kiso's views, helpers, and theme modules. Never put color tokens in the Lookbook's application.css — they belong in engine.css so host apps get them too.

The tailwindcss:engines Rake task (from tailwindcss-rails v4) automatically detects any Rails engine with app/assets/tailwind/{engine_name}/engine.css and generates app/assets/builds/tailwind/{engine_name}.css. Kiso's engine name is kiso, so the directory must be app/assets/tailwind/kiso/.

Lookbook setup: lookbook/app/assets/tailwind/application.css imports the auto-generated engine file and adds Lookbook-specific source paths:

css
1@import "tailwindcss"; 2@import "../builds/tailwind/kiso.css"; 3 4@source "../../views"; 5@source "../../../../test/components/previews";

Pull request workflow

Always include Closes #N in the PR body so GitHub auto-closes the issue on merge. This is the most commonly missed step.

bash
1# Create branch 2git checkout -b feat/{name}-component 3 4# Stage specific files (never git add -A) 5git add lib/kiso/themes/{name}.rb app/views/kiso/components/... 6 7# Commit 8git commit -m "feat: ComponentName component (#N)" 9 10# Push and create PR 11git push -u origin feat/{name}-component 12gh pr create --title "feat: ComponentName component" --body "$(cat <<'EOF' 13## Summary 14- [what was built] 15 16Closes #N 17 18## Test plan 19- [x] All Lookbook previews render (200) 20- [x] standardrb passes 21- [x] rake test passes 22- [ ] Visual review in Lookbook 23EOF 24)"

Commands

bash
1bin/dev # All services via Overmind (Lookbook :4001 + docs :4000) 2bin/dev -- -l web,css # Lookbook + Tailwind only (no docs) 3bin/worktree start # Start on worktree-assigned port 4bin/worktree port # Show port for current worktree 5overmind restart web # Restart Lookbook server 6bundle exec rake test # Run Ruby tests 7npm run test:unit # Run JS unit tests (Vitest) 8npm run test:e2e # Run Playwright E2E tests (needs bin/dev) 9npm run test:e2e:ui # Open Playwright GUI 10bundle exec standardrb --fix # Lint & auto-format Ruby 11npm run lint # Lint JS (oxlint) 12npm run fmt # Format JS (oxfmt)

Additional conventions

  • i18n — all user-visible text and ARIA labels use t('kiso.component_name.key') with entries in config/locales/en.yml.
  • Presets — if the component has border-radius, add entries to lib/kiso/presets/rounded.rb and sharp.rb.

Worktree workflow

See .claude/skills/worktree/SKILL.md for the full worktree lifecycle (create, start Lookbook, commit, push, PR, cleanup). Key command: bin/worktree start — starts Lookbook on a deterministic port (4101-4600).

Related Skills

Looking for an alternative to contributing or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

openclaw-release-maintainer is an AI agent skill for openclaw release maintainer.

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

flags is an AI agent skill for use this skill when adding or changing framework feature flags in next.js internals.

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

pr-review is an AI agent skill for pytorch pr review skill.

98.6k
0
Developer