Claude Code Plugins

Community-maintained marketplace

Feedback

Read and list files in the allowed directories. Use when you need to read content from files or explore the project structure.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name filesystem
description Read and list files in the allowed directories. Use when you need to read content from files or explore the project structure.

Filesystem Skills

You have access to safe filesystem operations.

Capabilities

  1. Read File: Read the content of a specific file.
  2. List Directory: List files and folders in a directory.

How to use

To use these skills, you must output a JSON object describing the action you want to take.

Read File

{
  "tool": "filesystem",
  "action": "read",
  "params": {
    "path": "/absolute/path/to/file.txt"
  }
}

List Directory

{
  "tool": "filesystem",
  "action": "list",
  "params": {
    "path": "/absolute/path/to/directory"
  }
}

Safety

  • Only read operations are allowed via this skill.
  • Paths must be absolute.