One-click install
npx skills add https://github.com/Cogni-AI-OU/cogni-ai-agent-skills --skill dotfiles-cogni-ai-ou
Or copy as Structured Prompt for Agentā–¼
Please help me install this Agent Skill.
Skill: dotfiles
Source: https://github.com/Cogni-AI-OU/cogni-ai-agent-skills/tree/main/dotfiles
Command: npx skills add https://github.com/Cogni-AI-OU/cogni-ai-agent-skills --skill dotfiles-cogni-ai-ou

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill prevents misconfiguration and CI/tooling breakage by helping you identify the correct repository dotfiles, understand what each one controls, and apply changes safely and consistently.

Core Features & Use Cases

  • Purpose & mapping: Explains what common repository dotfiles (including .github/, tool configs, and editor/lint settings) are for so you can choose the right file for the change you want.
  • Safe change boundaries: Clarifies what to avoid (e.g., application-specific logic and non-hidden documentation) and what to prioritize when diagnosing configuration issues.
  • Actionable workflows: Provides a repeatable workflow for locating the relevant dotfile, analyzing existing settings, applying updates, and verifying results.

Quick Start

Use the dotfiles skill to find which hidden configuration file controls the behavior you are trying to change, then update it by following the tool-specific rules and verifying with the associated linter, formatter, or Git command.

Frequently Asked Questions about dotfiles

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

FAQPage Schema
How do I fix CI/CD pipeline failures caused by incorrect repository dotfiles?ā–¼

Repository dotfiles control CI/CD configurations, linting rules, and environment settings. You can fix pipeline failures by identifying the specific dotfile managing the failing behavior, analyzing its current settings, and applying minimal, non-conflicting updates.

What do common repository dotfiles like .github/ and editor configs control?ā–¼

Common repository dotfiles control linting formats, pre-commit hooks, git configurations, and CI workflows. Understanding this mapping helps you choose the correct file to modify when diagnosing configuration issues or standardizing onboarding for new repositories.

How do I safely change git configuration and linting settings in dotfiles?ā–¼

To safely change git configuration and linting settings, locate the relevant dotfile, analyze existing settings, and apply minimal updates. You must follow tool-specific rules and verify results with the associated linter, formatter, or Git command.

What should I avoid modifying when troubleshooting environment configuration problems?ā–¼

When troubleshooting environment configuration problems, avoid modifying application-specific logic and non-hidden documentation. Prioritize diagnosing the actual hidden configuration files to prevent misconfiguration and tooling breakage.

What is the best way to standardize repository onboarding using dotfiles?ā–¼

The best way to standardize repository onboarding is using a repeatable workflow for dotfiles: locate the relevant hidden configuration file, analyze existing settings, apply updates, and verify results to ensure consistent environment setup across new repositories.