coding▌
22 indexed skills · max 10 per page
documentation-and-adrs
OWNER/REPO · productivity
Records decisions and documentation for architectural choices, public APIs, and feature shipping to aid future engineers and agents.
twill-cloud-coding-agent
twillai/skills · Cloud
Manage Twill Cloud Coding Agent workflows through the public v1 API. \n \n Create, list, retrieve, and manage tasks with support for custom branches, agent selection, and file attachments \n Stream job logs in real time via Server-Sent Events and cancel running jobs at any point \n Full lifecycle control: send follow-up messages, approve plans, archive tasks, and manage task state \n Schedule recurring coding tasks with cron expressions, timezone support, and pause/resume capabilities \n List re
copilot-coding-agent
supercent-io/skills-template · Productivity
Automate issue-to-Draft-PR pipeline by labeling issues for GitHub Copilot assignment. \n \n Label an issue with ai-copilot to trigger GitHub Actions, which auto-assigns Copilot via GraphQL and initiates code generation, branch creation, and Draft PR opening \n Requires GitHub Copilot Pro+, Business, or Enterprise; one-time setup deploys the workflow, registers a PAT secret, and creates the label \n Copilot PRs are treated as external contributions and require manual approval before CI runs; subs
coding-guidelines
actionbook/rust-skills · Frontend
Claude knows Rust conventions well. These are the non-obvious Rust-specific rules.
cc-skill-coding-standards
sickn33/antigravity-awesome-skills · Productivity
Universal coding standards applicable across all projects.
coding-standards
davila7/claude-code-templates · Productivity
Universal coding standards applicable across all projects.
coding-standards
sickn33/antigravity-awesome-skills · Productivity
Universal coding standards and best practices for TypeScript, JavaScript, React, and Node.js projects. \n \n Covers core principles (readability, KISS, DRY, YAGNI) with practical code examples showing good vs. bad patterns \n Includes TypeScript/JavaScript standards for naming, immutability, error handling, async/await, and type safety \n Provides React-specific guidance on component structure, custom hooks, state management, and conditional rendering \n Details API design conventions, REST endp
coding-agent
steipete/clawdis · Productivity
Delegate coding tasks to Codex, Claude Code, Pi, or OpenCode agents via background bash processes. \n \n Supports four coding agents (Codex, Claude Code, Pi, OpenCode) with agent-specific execution modes: PTY required for Codex/Pi/OpenCode; Claude Code uses --print --permission-mode bypassPermissions without PTY \n Background execution with session monitoring via process tool actions (log, poll, write, submit, kill) for long-running tasks \n Designed for feature building, PR reviews, refactoring
vibe-coding
refoundai/lenny-skills · Productivity
AI-assisted software development for non-engineers building prototypes and MVPs through natural language. \n \n Guides users through iterative AI-powered development: breaking problems into smaller pieces, refining outputs through follow-up prompts, and testing generated code \n Best suited for prototypes, internal tools, and MVPs; helps users understand when professional engineering review is needed for production systems \n Teaches vibe coding as a distinct skill for product managers, marketer
coding-guidelines
zhanghandong/rust-skills · Frontend
Rust naming, formatting, and best-practice guidelines covering 50 core rules. \n \n Covers naming conventions (no get_ prefix, iterator patterns, conversion methods), data types (newtypes, slice patterns, pre-allocation), and string handling (prefer bytes for ASCII, use Cow<str> when appropriate) \n Error handling guidance includes ? propagation over try!() , meaningful lifetime names, and lock ordering for concurrency safety \n Includes deprecation mappings (e.g., lazy_static! to OnceLock