Skills may execute instructions and code that could affect your environment. Marketplace scans reduce risk but do not guarantee safety. Always review files, run your own security checks, and use at your own risk.
status
Security Scan Summary
Status: Safe
Source: Syntic Skills registry
Automated security scan completed with no high-risk patterns detected. Manual review is still required.
About This Skill
Use when checking memory system health across auto-memory, rules, and topic files; reports capacity, stale entries, and recommendations.
Downloadable SKILL.md
Download SKILL.md and place it in your Syntic skills folder. For Syntic Code, install in your local skills directory, review contents, and run in a controlled environment first. Acknowledge the risk notice above to enable the download.
---
name: status
description: Use when checking memory system health across auto-memory, rules, and topic files; reports capacity, stale entries, and recommendations.
category: Engineering
version: 1.0.0
tools: []
---
# /si:status — Memory Health Dashboard
Quick overview of project memory state across auto-memory, rules, and topic files.
## Usage
```
/si:status # Full dashboard
/si:status --brief # One-line summary
```
## What It Reports
### Locate All Memory Files
- Auto-memory: MEMORY.md line count
- Topic files: count and names
- CLAUDE.md: line count (project-level and user global)
- Rules: count of files in .claude/rules/
### Analyze Capacity
| Metric | Healthy | Warning | Critical |
|--------|---------|---------|----------|
| MEMORY.md lines | < 120 | 120–180 | > 180 |
| CLAUDE.md lines | < 150 | 150–200 | > 200 |
| Topic files | 0–3 | 4–6 | > 6 |
| Stale entries | 0 | 1–3 | > 3 |
### Verify Referenced Files
For each MEMORY.md entry that references a file path, verify the file still exists. Stale entries waste space.
### Output
```
Memory Status
Auto-Memory (MEMORY.md):
Lines: {{n}}/200 ({{bar}}) {{emoji}}
Topic files: {{count}} ({{names}})
Last updated: {{date}}
Project Rules:
CLAUDE.md: {{n}} lines
Rules: {{count}} files in .claude/rules/
User global: {{n}} lines (~/.claude/CLAUDE.md)
Health:
Capacity: {{healthy/warning/critical}}
Stale refs: {{count}} (files no longer exist)
Duplicates: {{count}} (entries repeated)
{{if recommendations}}
Recommendations:
- {{recommendation}}
{{endif}}
```
## Interpretation
- **Green (< 60%)**: Plenty of room. Auto-memory working well.
- **Yellow (60–90%)**: Getting full. Consider running `/si:review` to promote or clean up.
- **Red (> 90%)**: Near capacity. Auto-memory may start dropping older entries. Run `/si:review` now.
## Brief Mode
```
/si:status --brief
```
Output: `Memory: {{n}}/200 lines | {{count}} rules | {{status_emoji}} {{status_word}}`
Bundle Download
Includes SKILL.md and bundled support files where provided. Risk acknowledgement is required.
Install Targets
Syntic App
- 1. Create a dedicated folder for this skill in your local skills library.
- 2. Place SKILL.md into that folder.
- 3. Restart Syntic and invoke this skill on matching tasks.
Syntic Code (CLI)
- 1. Save SKILL.md in your local Syntic Code skills directory.
- 2. Keep related files in the same skill folder.
- 3. Run in a safe environment and validate outputs.
Source
https://github.com/alirezarezvani/claude-skills/blob/main/engineering-team/self-improving-agent/skills/status/SKILL.md
Open Source LinkRelated Skills
a11y-audit
Use when auditing WCAG 2.2 Level A/AA accessibility, fixing violations in React, Next.js, Vue, Angular...
Engineeringadversarial-reviewer
Use when reviewing recent code changes or a PR before merge and you want a genuinely critical review, not...
Engineeringagent-designer
Use when architecting multi-agent systems, selecting orchestration patterns, or evaluating agent performance.
Engineeringagent-harness
Use when building bounded agentic loops with verified task execution and state machines.