meta-validate-context — for Claude Code meta-validate-context, community, for Claude Code, ide skills, binary-distribution, command-line-tool, content-addressed-storage, cross-platform, developer-tools, github-actions

v1.0.0

このスキルについて

適した場面: Ideal for AI agents that need validate context rules. ローカライズされた概要: A fast, cross-platform binary package manager built on OCI registries. It covers bazel, binary-distribution, command-line-tool workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

機能

Validate Context Rules
Check .claude/rules/subsystem- .md files match current codebase.
For each subsystem- .md rule file:
Read the rule — Extract type names, module paths, function names, error variants
Grep the codebase — Verify each reference exists

# Core Topics

ocx-sh ocx-sh
[4]
[1]
Updated: 4/25/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/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
10/11
Quality Score
64
Canonical Locale
en
Detected Body Locale
en

適した場面: Ideal for AI agents that need validate context rules. ローカライズされた概要: A fast, cross-platform binary package manager built on OCI registries. It covers bazel, binary-distribution, command-line-tool workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

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

推奨ポイント: meta-validate-context helps agents validate context rules. A fast, cross-platform binary package manager built on OCI registries. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

おすすめ

適した場面: Ideal for AI agents that need validate context rules.

実現可能なユースケース for meta-validate-context

ユースケース: Applying Validate Context Rules
ユースケース: Applying Check .claude/rules/subsystem- .md files match current codebase
ユースケース: Applying For each subsystem- .md rule file:

! セキュリティと制限

  • 制約事項: Requires repository-specific context from the skill documentation
  • 制約事項: Works best when the underlying tools and dependencies are already configured

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 meta-validate-context?

適した場面: Ideal for AI agents that need validate context rules. ローカライズされた概要: A fast, cross-platform binary package manager built on OCI registries. It covers bazel, binary-distribution, command-line-tool workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install meta-validate-context?

Run the command: npx killer-skills add ocx-sh/ocx/meta-validate-context. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for meta-validate-context?

Key use cases include: ユースケース: Applying Validate Context Rules, ユースケース: Applying Check .claude/rules/subsystem- .md files match current codebase, ユースケース: Applying For each subsystem- .md rule file:.

Which IDEs are compatible with meta-validate-context?

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 meta-validate-context?

制約事項: Requires repository-specific context from the skill documentation. 制約事項: Works best when the underlying tools and dependencies are already configured.

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 ocx-sh/ocx/meta-validate-context. 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 meta-validate-context 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

meta-validate-context

A fast, cross-platform binary package manager built on OCI registries. It covers bazel, binary-distribution, command-line-tool workflows. This AI agent skill

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

Validate Context Rules

Check .claude/rules/subsystem-*.md files match current codebase.

Workflow

For each subsystem-*.md rule file:

  1. Read the rule — Extract type names, module paths, function names, error variants
  2. Grep the codebase — Verify each reference exists
  3. Check for new additions — Find new public types/modules not in rule
  4. Report — List stale references + missing additions

Subsystem Rules to Check

RuleKey References to Verify
subsystem-oci.mdIndexImpl, SelectResult, RemoteIndex, LocalIndex, Identifier, Digest, Platform, Client
subsystem-file-structure.mdFileStructure, ObjectStore, ObjectDir, IndexStore, InstallStore, SymlinkKind, TempStore, ReferenceManager
subsystem-package.mdMetadata, Bundle, Env, Var, Modifier, Exporter, BundleBuilder, Version, Tag
subsystem-package-manager.mdPackageManager, PackageError, PackageErrorKind variants (NotFound, SelectionAmbiguous, etc.), task method names
subsystem-cli.mdContext, Command enum variants, Printable trait, Api struct
subsystem-mirror.mdMirrorSpec, Source variants, MirrorTask, MirrorResult, pipeline modules
subsystem-tests.mdFixture names in conftest.py, test file names, OcxRunner methods, make_package params
subsystem-website.mdVue component names/props in theme/index.mts, VitePress config, task commands, generated content paths

Verification Commands

bash
1# Check if a type still exists 2grep -r "pub struct TypeName" crates/ 3grep -r "pub enum TypeName" crates/ 4 5# Check if a module still exists 6ls crates/ocx_lib/src/module_name/ 7 8# Check for new public types not in the rule 9grep -rn "^pub struct\|^pub enum\|^pub trait" crates/ocx_lib/src/subsystem/ | grep -v test

Output Format

markdown
1## Context Validation Report 2 3### subsystem-oci.md 4- OK: IndexImpl, SelectResult, RemoteIndex, ... 5- STALE: [type] — renamed to [new_name] or removed 6- MISSING: [new_type] — not documented in rule 7 8### subsystem-file-structure.md 9...

When to Run

  • After big refactors
  • Before major feature branches
  • Part of /code-check audits
  • Monthly

関連スキル

Looking for an alternative to meta-validate-context 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
開発者