KS
Killer-Skills

aget-check-evolution — how to use aget-check-evolution how to use aget-check-evolution, aget-check-evolution setup guide, what is aget-check-evolution, aget-check-evolution alternative, aget-check-evolution vs directory health checkers, aget-check-evolution install, bash script for directory health check, AI agent self-diagnostic tools, evolution directory monitoring

v1.0.0
GitHub

About this Skill

Ideal for Autonomous AI Agents requiring self-diagnostic capabilities to monitor evolution directory health and disk usage. aget-check-evolution is an analytical template that monitors the health of the .aget/evolution/ directory by checking file counts, types, naming conventions, and disk usage.

Features

Performs file inventory using find and wc -l commands
Checks file types and naming conventions in the .aget/evolution/ directory
Monitors disk usage to ensure efficient storage
Executes self-diagnostic checks without supervisor intervention
Provides insights into evolution directory health using bash scripts

# Core Topics

aget-framework aget-framework
[0]
[0]
Updated: 3/7/2026

Quality Score

Top 5%
56
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
Cursor IDE Windsurf IDE VS Code IDE
> npx killer-skills add aget-framework/template-analyst-aget/aget-check-evolution

Agent Capability Analysis

The aget-check-evolution MCP Server by aget-framework is an open-source Categories.community integration for Claude and other AI agents, enabling seamless task automation and capability expansion. Optimized for how to use aget-check-evolution, aget-check-evolution setup guide, what is aget-check-evolution.

Ideal Agent Persona

Ideal for Autonomous AI Agents requiring self-diagnostic capabilities to monitor evolution directory health and disk usage.

Core Value

Empowers agents to automate file inventory and disk usage checks within the .aget/evolution/ directory, ensuring healthy evolution directory maintenance through file count analysis, type checks, and naming convention validation.

Capabilities Granted for aget-check-evolution MCP Server

Automating evolution directory health checks
Monitoring disk usage to prevent storage overflow
Validating file naming conventions for consistency

! Prerequisites & Limits

  • Requires access to the .aget/evolution/ directory
  • Limited to monitoring file counts, types, and disk usage
Project
SKILL.md
2.9 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

/aget-check-evolution

Monitor the health of the .aget/evolution/ directory by checking file counts, types, naming conventions, and disk usage.

Purpose

Provide self-diagnostic capability for AGET agents to assess their evolution directory health without supervisor intervention.

Execution

When invoked, perform these checks:

1. File Inventory

bash
1# Count total files 2find .aget/evolution -type f | wc -l 3 4# Count by extension 5find .aget/evolution -type f -name "*.md" | wc -l 6find .aget/evolution -type f -name "*.json" | wc -l 7find .aget/evolution -type f ! -name "*.md" ! -name "*.json" | wc -l

2. Naming Convention Check

Valid L-doc pattern: L###_*.md (e.g., L588_skill_invocation_control_semantics.md)

bash
1# Count valid L-doc names 2find .aget/evolution -type f -name "L[0-9][0-9][0-9]_*.md" | wc -l 3 4# Find non-conforming files (excluding index.json) 5find .aget/evolution -type f ! -name "L[0-9][0-9][0-9]_*.md" ! -name "index.json" ! -name "README.md"

3. Disk Usage

bash
1du -sh .aget/evolution

4. Index Integrity

Check that index.json exists and is valid JSON:

bash
1test -f .aget/evolution/index.json && jq empty .aget/evolution/index.json 2>/dev/null && echo "valid" || echo "invalid"

Thresholds

MetricOKWARNCRITICAL
Total files<500500-750>750
Non-standard files0-1011-50>50
Disk size<10MB10-25MB>25MB
Index integrityvalid-invalid

Note: Thresholds inherited from supervisor defaults. Research AGET baseline (2026-02-08): 94 files, 800K - well within OK range.

Output Format

Report the following:

=== /aget-check-evolution ===

Directory: .aget/evolution/

File Counts:
  Total:     [count]
  L-docs:    [count] (.md matching L###_*.md)
  Index:     [1 if exists, 0 otherwise]
  Other:     [count] (non-conforming)

Disk Usage: [size]

Index Status: [valid/invalid/missing]

Non-Conforming Files:
  [list any files not matching expected patterns]

Health Status: [OK | WARN | CRITICAL]
Alerts:
  [list any threshold violations]

Health Status Logic

IF index invalid OR index missing:
  CRITICAL
ELIF total_files > 750 OR disk > 25MB OR non_standard > 50:
  CRITICAL
ELIF total_files > 500 OR disk > 10MB OR non_standard > 10:
  WARN
ELSE:
  OK

Constraints

  • C1: Read-only operation. Never modify files.
  • C2: Report ALL findings, even if status is OK.
  • C3: List non-conforming files by name for actionability.

Related Skills

  • /aget-check-sessions - Sessions directory health
  • /aget-check-kb - Knowledge base health
  • /aget-record-lesson - Capture findings as L-docs

Traceability

LinkReference
POCPOC-017
ProjectPROJECT_PLAN_AGET_UNIVERSAL_SKILLS.md
SourceFleet Skill Deployment Report (supervisor)
Baseline94 files, 800K (2026-02-08)

aget-check-evolution v1.0.0 Category: Monitoring POC-017 Phase 1

Related Skills

Looking for an alternative to aget-check-evolution or building a Categories.community AI Agent? Explore these related open-source MCP Servers.

View All

widget-generator

Logo of f
f

widget-generator is an open-source AI agent skill for creating widget plugins that are injected into prompt feeds on prompts.chat. It supports two rendering modes: standard prompt widgets using default PromptCard styling and custom render widgets built as full React components.

149.6k
0
Design

chat-sdk

Logo of lobehub
lobehub

chat-sdk is a unified TypeScript SDK for building chat bots across multiple platforms, providing a single interface for deploying bot logic.

73.0k
0
Communication

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication