no-external

Rename active log files to backups and truncate originals locally.

174|144|Updated Jun 10, 2026
One-click install
npx skills add https://github.com/inbrainfun/inbrain --skill no-external-inbrainfun
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: no-external
Source: https://github.com/inbrainfun/inbrain/tree/main/test/fixtures/brain-first-skills/no-external
Command: npx skills add https://github.com/inbrainfun/inbrain --skill no-external-inbrainfun

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

The skill rotates log files locally, eliminating the need for network access or external services and reducing complexity in log maintenance.

Core Features & Use Cases

  • Local log rotation: rename the active log to a backup entry (e.g., .log.1) and truncate the live file to keep disk usage predictable.
  • No external API calls or brain queries: operates entirely on the local filesystem and configuration.
  • Use Case: maintain clean, space-efficient logs on a single machine without any remote dependencies.

Quick Start

Configure the log path from your config, then run the skill to rotate the active log and truncate the previous version.

Frequently Asked Questions about no-external

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

FAQPage Schema
How do I rotate local log files without relying on external services or network access?

You can perform local log rotation by renaming the active log file to a backup entry, such as .log.1, and then truncating the original live file to reset disk usage.

What is the best way to maintain space-efficient logs on a single offline machine?

Maintaining space-efficient logs on an offline machine requires rotating log files locally by renaming active logs and truncating the live file, operating entirely without remote dependencies.

Can I configure the log file path dynamically for automated log rotation?

Yes, the log rotation process reads the target log path directly from your local configuration file to determine which active log to rename and truncate.

Does local log rotation work in isolated environments without making external API calls?

Yes, this log rotation method operates entirely on the local filesystem without invoking external API calls, making it suitable for isolated or offline environments.

What happens to the active log file during the local rotation process?

During local log rotation, the active log file is renamed to a backup entry like .log.1, and the original live file is truncated to zero bytes to keep disk usage predictable.

When should I use an offline log rotation method instead of a network-dependent tool?

You should use an offline log rotation method when log maintenance must be carried out in isolation on a single machine, requiring predictable disk usage without external network access.