chi-recommendations — community chi-recommendations, Chi, CenturyLink, community, ai agent skill, ide skills, agent automation, AI agent skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for Frontend Agents needing optimized framework integrations with Vue 3, React, and Angular. Recommend the best Chi implementation approach based on project context. Use when the user asks which Chi approach to use (Vue, Web Components, or HTML/CSS), when starting a new project with Chi, or w

CenturyLink CenturyLink
[0]
[0]
Updated: 3/12/2026

Quality Score

Top 5%
36
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
> npx killer-skills add CenturyLink/Chi/chi-recommendations
Supports 19+ Platforms
Cursor
Windsurf
VS Code
Trae
Claude
OpenClaw
+12 more

Agent Capability Analysis

The chi-recommendations skill by CenturyLink is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

Ideal Agent Persona

Perfect for Frontend Agents needing optimized framework integrations with Vue 3, React, and Angular.

Core Value

Empowers agents to choose the best implementation approach using a decision tree, supporting Custom Elements and chi-vue for seamless framework integration with TypeScript support and Vue reactivity.

Capabilities Granted for chi-recommendations

Implementing chi-vue for Vue 3 projects
Integrating Custom Elements with React applications
Optimizing Angular projects with Custom Elements

! Prerequisites & Limits

  • Limited to Vue 3, React, and Angular frameworks
  • Requires understanding of framework-specific implementation details
Project
SKILL.md
3.9 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

Chi Implementation Recommendations

Decision Tree

Use this decision tree to recommend the best approach:

Step 1: Check Framework

FrameworkRecommended ApproachReasoning
Vue 3chi-vueFull Vue reactivity, composition API, TypeScript support
ReactCustom ElementsWorks with React; note: use ref callbacks for event listeners since React synthetic events don't fire on CEs
AngularCustom ElementsExcellent support via CUSTOM_ELEMENTS_SCHEMA in module declarations
SvelteCustom ElementsSeamless Custom Elements support
Vanilla JSCustom ElementsBest DX, no framework overhead
UnknownCustom ElementsSafe default for any framework

Step 2: Check Constraints

ConstraintOverride ToReasoning
Legacy browser support (IE11)HTML/CSSCustom Elements need polyfills
User explicitly wants CSSHTML/CSSRespect explicit preference
User wants Web ComponentsCustom ElementsRespect explicit preference
Static HTML site (no JS)HTML/CSSNo JS runtime needed
SSR without hydrationHTML/CSSCustom Elements need JS to initialize

Step 3: Determine Confidence

ScenarioConfidence
Framework detected + no conflictsHigh
Existing code matches recommendationHigh
No framework info, using defaultLow
Existing code uses different approachMedium (suggest gradual migration)

Code Examples

Vue Approach

html
1<script setup> 2import { ChiButton } from '@aspect/chi-vue'; 3</script> 4<template> 5 <ChiButton color="primary" size="lg" @click="handleClick">Click me</ChiButton> 6</template>

Custom Elements Approach

html
1<chi-button color="primary" size="lg">Click me</chi-button> 2<script> 3 document.querySelector('chi-button').addEventListener('chiClick', handleClick); 4</script>

HTML/CSS Approach

html
1<button class="chi-button -primary -lg" type="button" onclick="handleClick()">Click me</button>

Note: Requires manual event handling, ARIA attributes, and keyboard support.

Approach Detection

To detect which approach existing code uses:

PatternApproach
<Chi[A-Z] (PascalCase tags)Vue
<chi- (kebab-case custom elements)Custom Elements
class="chi- (CSS classes on native elements)HTML/CSS

Count occurrences of each pattern. The most frequent one is the existing approach.

Edge case: <chi-icon> inside a <button class="chi-button"> is mixed usage -- recommend migrating the button to <chi-button> too.

Migration Paths

HTML/CSS → Custom Elements

  1. Replace CSS base classes with Web Component tags: <button class="chi-button"><chi-button>
  2. Convert CSS modifiers to properties: -primarycolor="primary"
  3. Convert boolean modifiers to attributes: -disableddisabled
  4. Keep utility classes for spacing: class="-p--4" stays
  5. Remove manual ARIA -- Web Components handle it automatically

HTML/CSS → Vue

  1. Install @aspect/chi-vue package
  2. Import components: import { ChiButton } from '@aspect/chi-vue'
  3. Replace HTML with Vue component syntax
  4. Use v-bind for dynamic props, v-on for events

Custom Elements → Vue

  1. Replace <chi-*> tags with <Chi*> components
  2. Convert attributes to Vue props syntax
  3. Migrate events from addEventListener to v-on

Vue → Custom Elements

  1. Replace <Chi*> with <chi-*> Web Components
  2. Convert Vue props to attributes
  3. Replace v-on events with addEventListener
  4. Handle reactivity manually if needed

Priority Order

  1. chi-vue (priority 1) -- Vue 3 components for Vue projects
  2. chi-web-components (priority 2) -- Custom Elements for any framework
  3. chi-html-css (priority 3) -- CSS classes for static HTML or legacy support

FAQ & Installation Steps

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

? Frequently Asked Questions

What is chi-recommendations?

Perfect for Frontend Agents needing optimized framework integrations with Vue 3, React, and Angular. Recommend the best Chi implementation approach based on project context. Use when the user asks which Chi approach to use (Vue, Web Components, or HTML/CSS), when starting a new project with Chi, or w

How do I install chi-recommendations?

Run the command: npx killer-skills add CenturyLink/Chi/chi-recommendations. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for chi-recommendations?

Key use cases include: Implementing chi-vue for Vue 3 projects, Integrating Custom Elements with React applications, Optimizing Angular projects with Custom Elements.

Which IDEs are compatible with chi-recommendations?

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 chi-recommendations?

Limited to Vue 3, React, and Angular frameworks. Requires understanding of framework-specific implementation details.

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 CenturyLink/Chi/chi-recommendations. 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 chi-recommendations immediately in the current project.

Related Skills

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

View All

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
Design

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
AI

antd-commit-msg

Logo of ant-design
ant-design

Generate a single-line commit message for ant-design by reading the projects git staged area and recent commit style. Use when the user asks for a commit message, says msg, commit msg, 写提交信息, or wants

97.8k
0
Design