skills/smithery.ai/autonomous-session-manager

autonomous-session-manager

Installation
SKILL.md

Autonomous Session Manager

Manages session lifecycle for autonomous coding operations - creation, resumption, detection, and auto-continuation.

Quick Start

Detect Session Type

from scripts.session_detector import detect_session_type, SessionType

session_type = detect_session_type(project_dir)
if session_type == SessionType.INIT:
    # First run - need to initialize
    pass
else:
    # Continuation - resume previous work
    pass
Installs
1
First Seen
Mar 29, 2026
autonomous-session-manager from smithery.ai