creating-continue-packages

Generate request, description, and toxicity_check metadata from SKILL.md files.

121|16|Updated Oct 10, 2025
One-click install
npx skills add https://github.com/pr-pm/prpm --skill creating-continue-packages
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: creating-continue-packages
Source: https://github.com/pr-pm/prpm/tree/main/.claude/skills/creating-continue-packages
Command: npx skills add https://github.com/pr-pm/prpm --skill creating-continue-packages

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill eliminates confusion around Continue rule creation by providing clear guidance on required fields, pattern matching, and application semantics.

Core Features & Use Cases

  • Pattern-Based Rules: Create context-aware rules using glob patterns for file paths and regex for content matching.
  • AlwaysApply Semantics: Understand and implement the three distinct behaviors (true/false/undefined) for rule application.
  • Use Case: When building a new React project, use this Skill to create rules that automatically apply TypeScript standards to all .tsx files and React-specific patterns to components importing React.

Quick Start

Create a Continue rule for TypeScript files that requires explicit type definitions and avoids the 'any' type.

Frequently Asked Questions about creating-continue-packages

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a Continue rule that automatically applies to specific file types?

Continue rules use glob patterns to match file paths and regex for content matching, enabling automatic application to specific files. Define the pattern in your rule configuration to target file types like `.tsx` or `.ts`, then set the `alwaysApply` behavior to control when the rule triggers.

What does the alwaysApply field do in a Continue rule?

The `alwaysApply` field has three distinct behaviors: `true` applies the rule unconditionally, `false` requires user confirmation, and `undefined` applies contextually based on file content. Choose the behavior that matches your rule's strictness and use case.

How do I generate semantic metadata for a Continue rule from a Skill?

Extract metadata from your SKILL.md and related scripts to create a three-sentence request optimized for vector embedding, a description following the Action Input to Output pattern, and a toxicity analysis with explicit rationale for downstream retrieval systems.

Can I use Continue rules to enforce coding standards across a project?

Yes. Create context-aware rules with glob patterns targeting file types (e.g., all `.tsx` files) and regex matching for content patterns (e.g., React imports). Apply TypeScript standards or project-specific patterns automatically using appropriate `alwaysApply` settings.

What's the difference between glob patterns and regex matching in Continue rules?

Glob patterns match file paths and names (e.g., `src/**/*.tsx`), while regex matches content within files. Use globs to target which files the rule applies to, and regex to match specific code patterns or syntax within those files.

Why should I use high-density semantic metadata for Continue rules?

Semantic metadata enables RAG systems to retrieve and apply your rules precisely. Dense, structured descriptions with clear request-to-output mappings improve retrieval accuracy and ensure rules activate in the right contexts without ambiguity.