repo.fs

List, read, write, append, delete, and create directories in local workspaces.

2|Updated Mar 22, 2026
One-click install
npx skills add https://github.com/anzx01/LocalClaw --skill repo-fs
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: repo.fs
Source: https://github.com/anzx01/LocalClaw/tree/main/bundled_skills/repo.fs
Command: npx skills add https://github.com/anzx01/LocalClaw --skill repo-fs

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides a simple, consistent interface for interacting with files and directories inside the current workspace so agents and users can list, read, write, append, delete, or create directories without using raw shell commands.

Core Features & Use Cases

  • File Listing: List files and directories with optional long format and include hidden files.
  • File Read & Edit: Read file contents, overwrite or create files, and append content to existing files.
  • File & Directory Management: Delete files or directories (with recursive option) and create directories with parent support.
  • Use Case: Inspect repository contents, update configuration files, append logs, or create project folders as part of an automation workflow.

Quick Start

List all files in the workspace root in long format and show hidden files.

Frequently Asked Questions about repo.fs

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

FAQPage Schema
How do I list and read workspace files without using raw shell commands?

Workspace file management replaces raw shell commands by invoking underlying tools like file_list with long and all flags, and file_read with a path parameter. This provides a consistent interface for listing and reading repository contents safely.

Can I append content to existing files or create new directories recursively?

Yes, you can append content to existing files using the file_append action, and create directories recursively by invoking file_mkdir with the parents flag. These workspace file management operations support updating logs and preparing test fixtures without direct shell access.

What is the best way to manage files in an agent runtime environment?

Managing files in an agent runtime environment is best handled through parameterized actions for listing, reading, writing, and deleting. This safely handles local project workspaces by abstracting underlying tools like file_write and file_delete using path and recursive flags.

Does this file management approach support hidden files and recursive directory deletion?

Yes, this file management approach supports hidden files by using the all flag during listing, and supports recursive directory deletion by passing the recursive flag to the file_delete action. These options allow detailed inspection and cleanup of the workspace.

When should I use parameterized file actions instead of direct shell commands for editing configuration files?

You should use parameterized file actions instead of direct shell commands when you need to safely overwrite or create configuration files in an automation workflow. Using file_write and file_append ensures consistent path handling and reduces the risk of unintended shell side effects.