aget-check-evolution — community aget-check-evolution, template-worker-aget, community, ide skills

v1.0.0

このスキルについて

AGET エージェントが進化ディレクトリのヘルス評価のための高度なセルフ診断機能を必要とする場合に最適です。 Monitor .aget/evolution/ directory health. Validates file counts, naming conventions, disk usage, and returns health status with alerts on anomalies.

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

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 9/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
9/11
Quality Score
56
Canonical Locale
en
Detected Body Locale
en

AGET エージェントが進化ディレクトリのヘルス評価のための高度なセルフ診断機能を必要とする場合に最適です。 Monitor .aget/evolution/ directory health. Validates file counts, naming conventions, disk usage, and returns health status with alerts on anomalies.

このスキルを使用する理由

`find` と `wc` コマンドを使用して、`.aget/evolution/` ディレクトリ内のファイル数、タイプ、命名規則、およびディスク使用状況を監視できるようにエージェントを有効にします。

おすすめ

AGET エージェントが進化ディレクトリのヘルス評価のための高度なセルフ診断機能を必要とする場合に最適です。

実現可能なユースケース for aget-check-evolution

進化ディレクトリのヘルス状態を監視する
ファイルインベントリの差異をデバッグする
エージェントの効率的な動作のためのディスク使用量を最適化する

! セキュリティと制限

  • `.aget/evolution/` ディレクトリへのファイルシステムアクセスが必要
  • 特定のファイルタイプ(例: `.md` 拡張子)のみを監視できる

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is aget-check-evolution?

AGET エージェントが進化ディレクトリのヘルス評価のための高度なセルフ診断機能を必要とする場合に最適です。 Monitor .aget/evolution/ directory health. Validates file counts, naming conventions, disk usage, and returns health status with alerts on anomalies.

How do I install aget-check-evolution?

Run the command: npx killer-skills add aget-framework/template-worker-aget. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for aget-check-evolution?

Key use cases include: 進化ディレクトリのヘルス状態を監視する, ファイルインベントリの差異をデバッグする, エージェントの効率的な動作のためのディスク使用量を最適化する.

Which IDEs are compatible with aget-check-evolution?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for aget-check-evolution?

`.aget/evolution/` ディレクトリへのファイルシステムアクセスが必要. 特定のファイルタイプ(例: `.md` 拡張子)のみを監視できる.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add aget-framework/template-worker-aget. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use aget-check-evolution immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

aget-check-evolution

Install aget-check-evolution, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

/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.
  • /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

関連スキル

Looking for an alternative to aget-check-evolution or another community skill for your workflow? Explore these related open-source skills.

すべて表示

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

カスタマイズ可能なウィジェットプラグインをprompts.chatのフィードシステム用に生成する

149.6k
0
AI

flags

Logo of vercel
vercel

React フレームワーク

138.4k
0
ブラウザ

pr-review

Logo of pytorch
pytorch

Pythonにおけるテンソルと動的ニューラルネットワーク(強力なGPUアクセラレーション)

98.6k
0
開発者