agente-00c-runtime

Manage state, locking, and secrets filtering for the agente-00c runtime.

21|4|Updated Jan 8, 2026
One-click install
npx skills add https://github.com/JotJunior/cstk --skill agente-00c-runtime
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: agente-00c-runtime
Source: https://github.com/JotJunior/cstk/tree/main/global/skills/agente-00c-runtime
Command: npx skills add https://github.com/JotJunior/cstk --skill agente-00c-runtime

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires jq, sha256sum, shasum, realpath, readlink, mktemp, date, grep, awk, sed, and includes scripts (resource) components.

What problem does it solve?

Provides a set of POSIX shell helpers to manage per-project state, concurrency locks, and state validation for the agente-00c runtime used by orchestrators.

Core Features & Use Cases

  • State management and audit-friendly state.json with hashing, history, and path resolution.
  • Atomic locking via mkdir to guard concurrent agent runs.
  • Secrets filtering integration to scrub sensitive env values before outputs.
  • Shared helpers for hashing, logging, and state-dir resolution across the runtime components.

Quick Start

Source the runtime helpers and run the provided scripts to initialize and manage state for agente-00c orchestrations.

Frequently Asked Questions about agente-00c-runtime

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I manage state and concurrency locks in POSIX shell orchestrator pipelines?

You manage state and concurrency in POSIX shell orchestrator pipelines using atomic mkdir locking and hashing utilities to guard concurrent agent runs and ensure deterministic execution. The runtime helpers provide audit-friendly state.json validation and path resolution.

What is the best way to filter secrets from environment variables before pipeline output?

The best way to filter secrets from environment variables before pipeline output is using integrated secrets filtering helpers that scrub sensitive env values. This ensures audit-friendly IO patterns prevent accidental exposure during orchestrator state management and logging operations.

Do I need jq and sha256sum to run POSIX shell state management scripts?

Yes, you need jq, sha256sum or shasum, alongside realpath, readlink, mktemp, date, grep, awk, and sed to run these POSIX shell state management scripts. These dependencies handle hashing, JSON parsing, and path resolution for orchestrator runtime components.

How does atomic locking work for concurrent orchestrator agent runs?

Atomic locking for concurrent orchestrator agent runs works via mkdir operations that create lock directories. Because mkdir is atomic at the filesystem level, only one agent process can acquire the lock, preventing race conditions during shared state validation and updates.

Can I use these POSIX runtime helpers directly in my own shell scripts?

These POSIX runtime helpers are internal infrastructure not intended for direct user invocation. They are shared specifically by agente-00c and feature-00c components to provide state-dir resolution, hashing utilities, and logging across the orchestrator runtime components.