scbe-self-improvement-skill-management

Run the SCBE self-improvement loop by documenting completed work, creating new skills, updating existing skills, and propagating SCBE knowledge to other AI systems via context documents and structured knowledge files. Use when users ask to create/update skills, formalize repeated SCBE workflows, enforce skill approval gates, generate transfer prompts for Claude/Gemini/custom agents, or publish SCBE knowledge artifacts to Hugging Face datasets.

6 stars

Best use case

scbe-self-improvement-skill-management is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Run the SCBE self-improvement loop by documenting completed work, creating new skills, updating existing skills, and propagating SCBE knowledge to other AI systems via context documents and structured knowledge files. Use when users ask to create/update skills, formalize repeated SCBE workflows, enforce skill approval gates, generate transfer prompts for Claude/Gemini/custom agents, or publish SCBE knowledge artifacts to Hugging Face datasets.

Teams using scbe-self-improvement-skill-management should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/scbe-self-improvement-skill-management/SKILL.md --create-dirs "https://raw.githubusercontent.com/issdandavis/SCBE-AETHERMOORE/main/external/codex-skills-live/scbe-self-improvement-skill-management/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/scbe-self-improvement-skill-management/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How scbe-self-improvement-skill-management Compares

Feature / Agentscbe-self-improvement-skill-managementStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Run the SCBE self-improvement loop by documenting completed work, creating new skills, updating existing skills, and propagating SCBE knowledge to other AI systems via context documents and structured knowledge files. Use when users ask to create/update skills, formalize repeated SCBE workflows, enforce skill approval gates, generate transfer prompts for Claude/Gemini/custom agents, or publish SCBE knowledge artifacts to Hugging Face datasets.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# SCBE Self-Improvement & Skill Management

Use this skill to keep SCBE capabilities compounding through a disciplined loop:
build something -> document it -> extract patterns -> create/update skill -> reuse it in the next build.

## Core Rules

1. Enforce explicit approval before installing any new skill.
2. Keep `SKILL.md` concise (target under 500 lines); move depth into `references/`.
3. Prefer overtriggering to undertriggering in skill descriptions.
4. Run dimensional analysis before changing canonical math constants or formulas.
5. Keep stable naming: `scbe-{domain}-{function}`.

## Workflow Decision

Choose one path:

- New skill creation
- Existing skill update
- Knowledge propagation to another AI system

If the user intent is mixed, split output by path and make each path explicit.

## New Skill Creation

Create a new skill when one of these holds:

- Workflow repeated 3+ times across conversations
- New SCBE component stabilized (tests passing, spec written)
- User explicitly asks for a new skill
- Cross-service integration pattern validated

Procedure:

1. Name skill as `scbe-{domain}-{function}`.
2. Initialize with `init_skill.py`.
3. Write trigger-rich description (what it does + when to invoke).
4. Keep core workflow in `SKILL.md`; move deep material to `references/`.
5. Add templates/assets needed for reuse.
6. Validate with `quick_validate.py`.
7. Test with 2-3 realistic prompts.
8. Present approval gate summary and wait for explicit approval before install.

## Existing Skill Update

Update when:

- Canonical constant changes (rare; dimensional analysis required first)
- New layer/component added
- Workflow step changed
- Glossary expanded
- Instruction bug discovered

Procedure:

1. Read current skill fully.
2. Identify exact sections to change.
3. Draft minimal diff.
4. Run dimensional analysis if math/constants are touched.
5. Present diff for user approval.
6. Apply and validate.

## Approval Gate (Mandatory)

Never install a new or updated skill without explicit user approval.

Before installation, present:

1. What the skill does (one sentence)
2. Trigger phrases/contexts
3. Files included
4. New dependencies (if any)

Wait for: `yes`, `approved`, or equivalent.

## Knowledge Propagation

When user asks to teach/update another AI:

1. Identify target AI and role.
2. Scope relevant layers/components/constants.
3. Generate transfer docs using templates in `assets/`.
4. Keep constants exact unless user explicitly asks for revision.
5. Optionally prepare Hugging Face dataset packaging.

Use:

- `assets/context-template.md`
- `assets/scbe-knowledge-v4.yaml`
- `assets/action-summary.template.yaml`
- `references/knowledge-propagation.md`
- `references/external-identity-research.md` (for handle/name/repo disambiguation; treat as verification-first input)

## Skill Composition

Prefer reuse/composition over creating redundant skills.

Contract:
`Skill A output -> action_summary.yaml -> Skill B input`

Use `assets/action-summary.template.yaml` for the handoff schema.

## Memory Guidance

Persist only stable, validated information and only with user approval.

Persist:
- Canonical terms
- Workflow preferences
- Naming conventions
- Milestones

Do not persist:
- Temporary debugging state
- One-off experiments
- Unapproved drafts

Related Skills

scbe-training-pair-authoring

6
from issdandavis/SCBE-AETHERMOORE

Create prompt and response and metadata training pairs from SCBE documents, repair traces, terminal sessions, and operational workflows using the repository's canonical dataset contract and provenance rules.

scbe-spin-conversation-engine

6
from issdandavis/SCBE-AETHERMOORE

Generate SFT training data via radial matrix conversation pivots with D&D-style combat research mode. Produces diverse, cost-effective training pairs with Sacred Tongue encoding, golden spiral problem distribution, and harmonic re-attunement.

scbe-research-training-bridge

6
from issdandavis/SCBE-AETHERMOORE

Stage arXiv evidence and Obsidian markdown into source-grounded Hugging Face training bundles for research, review, and later SFT runs.

scbe-document-management

6
from issdandavis/SCBE-AETHERMOORE

Consolidate overlapping docs, classify files by authority, and keep SCBE repo documents aligned with runtime truth. Use when the repo has drift between canonical docs, public docs, proposal notes, research branches, and generated evidence.

scbe-colab-bridge

6
from issdandavis/SCBE-AETHERMOORE

Control Google Colab notebooks from Claude Code via Chrome extension. Execute cells, run terminal commands, read outputs, and manage GPU compute remotely.

scbe-claim-to-code-evidence

6
from issdandavis/SCBE-AETHERMOORE

Map SCBE Notion technical claims, proof pages, and patent-facing architecture notes to concrete repository evidence such as code paths, tests, demos, and docs. Use when Codex needs to build a due-diligence packet, claim-to-code audit, implementation crosswalk, patent support note, or proof summary from local Notion exports and repo artifacts.

scbe-autonomous-worker-productizer

6
from issdandavis/SCBE-AETHERMOORE

Turn SCBE automation, autonomous worker, and revenue-system notes into concrete offers, workflow packs, pilot plans, or SaaS-facing product packets. Use when Codex needs to package Notion automation pages into buyer-ready offerings, n8n/Zapier workflow designs, flock-backed worker systems, or implementation roadmaps tied to existing SCBE repo surfaces.

scbe-code-scanning-ops

6
from issdandavis/SCBE-AETHERMOORE

Operate GitHub code scanning and CodeQL remediation for SCBE repositories. Use when triaging code-scanning alerts, mapping alert classes to fix patterns, validating targeted regressions, or wiring dedicated CodeQL workflows and runbooks into the repo.

cloud-storage-local-storage-management

6
from issdandavis/SCBE-AETHERMOORE

Audit, sort, route, and back up large Windows workspaces across local disks and cloud-sync folders without recursive mirror failures. Use when the user wants the filesystem cleaned up, cloud storage organized, backup targets chosen by free space and route quality, or hardware/storage bottlenecks identified before moving data.

shopify-management-ops

6
from issdandavis/SCBE-AETHERMOORE

Run Shopify management from terminal with audit-first checks, product sync, storefront gate control, and optional live publish. Use when the user asks to manage Shopify products, storefront state, or monetization operations.

scbe-world-anvil-lore-rag-7th-tongue

6
from issdandavis/SCBE-AETHERMOORE

Build and operate a lore-focused RAG system using World Anvil exports and SCBE docs, with deterministic Claude/Codex cross-talk packets for handoff. Use when users ask to structure lore canon retrieval, sync worldbuilding data, enforce citation-grounded generation, or coordinate a 7th Tongue overseer lane across multiple AI agents.

scbe-webtoon-book-conversion

6
from issdandavis/SCBE-AETHERMOORE

Convert The Six Tongues Protocol and related manuscript sections into webtoon/manhwa storyboard packets, episode roadmaps, panel expansion plans, and image-generation-ready prompt lanes. Use when extending the series storyboard, adapting book chapters into vertical scroll episodes, or keeping art generation tied to canon instead of drifting into generic fantasy panels.