smithery/ntq78

general-file-operations

Use when handling file paths or imports

Installation

$ npx skills add smithery/ntq78 --skill general-file-operations

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/ntq78.

npx skills add smithery/ntq78

Browse all from smithery/ntq78

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 762 B
  • docs SUMMARY.md 70 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

General File Operations

Guidelines for file paths and imports in the Lightcraft codebase.

TypeScript Path Aliases

Always use @/ alias for imports within the project:

// ✅ CORRECT
import { UI_HorizontalNav } from "@/components/UI_HorizontalNav/UI_HorizontalNav";
import { useQ_Me } from "@/hooks/Me/useQ_Me";
import { Provider_ANTD } from "@/providers/antd/Provider_ANTD";

// ❌ WRONG
import { UI_HorizontalNav } from "../../components/UI_HorizontalNav/UI_HorizontalNav";

Configured in tsconfig.json with baseUrl: "." and paths: { "@/": ["./src/"] }

Related

  • OS-specific file operations: See .claude/rules/os-commands.md