AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Editorconfig

skill-cogni-ai-ou-cogni-ai-agent-skills-editorconfig · by Cogni-AI-OU

Generates a comprehensive and best-practice-oriented .editorconfig file based on project analysis and user preferences.

— No reviews yet
0 installs
35 views
0.0% view→install

Install

$ agentstack add skill-cogni-ai-ou-cogni-ai-agent-skills-editorconfig

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • ✓ Prompt-injection patterns
  • ✓ Secret / credential exfiltration
  • ✓ Dangerous shell & filesystem operations
  • ✓ Untrusted network calls
  • ✓ Known-malicious package signatures

What it can access

  • ✓ Network access No
  • ✓ Filesystem access No
  • ✓ Shell / process execution No
  • ✓ Environment & secrets No
  • ✓ Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-cogni-ai-ou-cogni-ai-agent-skills-editorconfig)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
○ 4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Editorconfig? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

editorconfig

Generate a robust, comprehensive, and best-practice-oriented .editorconfig file to ensure consistent coding styles across different editors and IDEs.

Core Process

  1. Analyze Context: Scan the project structure and file types to infer the languages and technologies being used.
  2. Incorporate Preferences: Adhere to explicit user constraints (e.g., indentation style/size). Note any conflicts with best practices in the final explanation.
  3. Apply Universal Best Practices: Enforce baseline standards (character sets, LF line endings, trailing whitespace, and final newlines).
  4. Generate File: Output a structured .editorconfig file covering all relevant file types found in the project via glob patterns (*, **.js, **.py, etc.).
  5. Provide Explanations: Detail the rationale for every single rule generated in a clear Markdown "Rule-by-Rule Explanation" section below the code block.

Core Principles

  • Precision Targeting: Apply rules via universal and specific glob patterns without polluting unrelated scopes.
  • Universal Standards: Use lf for line endings, utf-8 charset, trim trailing whitespace, and insert final newlines globally unless context demands otherwise.
  • Exceptions Mapping: Explicitly disable trim_trailing_whitespace for [*.md] files since trailing whitespace holds semantic meaning (hard line breaks).

When to Use

  • When requested to generate, update, or configure an .editorconfig file.
  • When standardizing coding styles or formatting hooks for a workspace.

When Not to Use

  • When the project already has an established .editorconfig that simply needs minor adjustments (edit the existing file rather than generating a new one from scratch).
  • For enforcing complex logic constraints or code quality metrics (use Linters like ESLint or Pylint instead).
  • If the repository strictly uses an automated formatter like Prettier or Black that overrides editor configurations.

Common Pitfalls

  • Overriding Markdown Semantics: Setting trim_trailing_whitespace = true globally without adding an exception for [*.md], breaking Markdown's hard-line breaks (which require two trailing spaces).
  • Ignoring Project Context: Generating a generic .editorconfig that defaults to 4 spaces, even when every file in the current repository clearly uses 2 spaces.
  • Missing root = true: Forgetting to add root = true at the top of the file, causing editors to continue searching parent directories for conflicting rules.

Quick Start

# Top-most EditorConfig file
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

Diagnostics and Troubleshooting

  • If settings are overridden by parent directories, verify that root = true is placed at the top of the file.
  • If whitespace handling causes issues in Markdown or Makefiles, explicitly add overrides for [*.md] or [Makefile].

Best Practices

  • Start with root = true to stop the EditorConfig search in the current directory.
  • Combine the output into two parts: A single code block with the .editorconfig and a "Rule-by-Rule Explanation" section in Markdown.

What to Avoid

  • Outputting an .editorconfig without rule-by-rule explanations.
  • Overwriting existing .editorconfig files blindly without reading and merging current project conventions.

References

-

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.