Contextium Session Startup

VerifiedSafe

Runs the full Contextium session startup sequence by executing three agents in order: initializer, task determiner, and context fetcher. Helps set up the environment, check available tools, and load relevant context at the start of a session.

Sby Skills Guide Bot
ProductivityIntermediate
406/2/2026
Claude Code
#contextium#startup#agents#session-setup

Recommended for

Our review

Runs the full Contextium session startup sequence by executing three agents in cascade.

Strengths

  • Automated startup with environment verification and state creation
  • Clear pipeline: initialization, task determination, context loading
  • Separate logs per agent for easy debugging

Limitations

  • Only works within the Contextium framework
  • Requires correct setup of scripts and agents
  • Logs stored in /tmp are ephemeral
When to use it

At the beginning of every new Contextium session to initialize the environment and identify the current task.

When not to use it

For simple sessions or outside Contextium, where manual startup is sufficient.

Security analysis

Safe
Quality score85/100

The skill runs a local bash script './agents/run-startup.sh' to orchestrate a startup sequence. No destructive, exfiltration, or obfuscated commands are present. The script is not downloaded from an external source, and the command itself is straightforward. The risk of executing a local script is minimal given the trusted environment.

No concerns found

Examples

Initialize Contextium Session
Run the full Contextium session startup sequence.
Execute startup pipeline
Please execute the Contextium startup orchestrator to initialize this session.
Start agents for session
Run ./agents/run-startup.sh to initialize the environment, determine current task, and load context.

name: startup description: Run full Contextium session startup sequence with all agents allowed-tools: Bash, Read

Contextium Session Startup

Run the full startup agent pipeline to initialize this session.

Execution

Run the startup orchestrator:

./agents/run-startup.sh

This executes three agents in sequence:

  1. Initializer - Verify environment, create state files
  2. Task Determiner - Analyze state, determine current task
  3. Context Fetcher - Load minimal relevant context

After Startup

Review the output and:

  • Note the current task (if any)
  • Check for any missing tools
  • Review loaded context

Logs are available at:

  • /tmp/contextium-startup.log - Full startup output
  • /tmp/contextium/*.log - Individual agent logs
Related skills