MCPcopy Create free account

hub / github.com/AICreator-Wind/gstack-openclaw-skills / functions

Functions18 in github.com/AICreator-Wind/gstack-openclaw-skills

↓ 5 callersMethodload_workflow
Load a workflow's state. Args: workflow_id: Workflow ID Returns: Workflow state dictionary, or None
gstack-skills/scripts/state_manager.py:66
↓ 2 callersMethodget_skill_path
Get the file path to a skill's SKILL.md file. Args: skill_name: Name of the skill Returns: Path to
gstack-skills/scripts/command_router.py:144
↓ 2 callersMethodsave_workflow
Save a workflow's state. Args: workflow_id: Workflow ID state: State dictionary Returns:
gstack-skills/scripts/state_manager.py:84
↓ 2 callersMethodskill_exists
Check if a skill exists. Args: skill_name: Name of the skill Returns: True if skill exists, False o
gstack-skills/scripts/command_router.py:156
↓ 1 callersMethodcreate_workflow
Create a new workflow with a unique ID. Returns: Workflow ID
gstack-skills/scripts/state_manager.py:42
↓ 1 callersMethoddelete_workflow
Delete a workflow. Args: workflow_id: Workflow ID Returns: True if deleted successfully, False othe
gstack-skills/scripts/state_manager.py:218
↓ 1 callersMethodget_data
Get a data value from the workflow state. Args: workflow_id: Workflow ID key: Data key Returns:
gstack-skills/scripts/state_manager.py:128
↓ 1 callersMethodget_workflow_summary
Get a summary of the workflow. Args: workflow_id: Workflow ID Returns: Summary dictionary, or None
gstack-skills/scripts/state_manager.py:175
↓ 1 callersMethodlist_workflows
List all workflows. Returns: List of workflow summaries
gstack-skills/scripts/state_manager.py:201
↓ 1 callersFunctionmain
Main entry point for command line usage.
gstack-skills/scripts/state_manager.py:238
↓ 1 callersFunctionmain
Main entry point for command line usage.
gstack-skills/scripts/command_router.py:222
↓ 1 callersMethodparse_command
Parse user input and determine the appropriate skill. Args: user_input: Raw user input string Returns:
gstack-skills/scripts/command_router.py:115
↓ 1 callersMethodroute
Route user input to the appropriate skill. Args: user_input: Raw user input string Returns: Diction
gstack-skills/scripts/command_router.py:169
↓ 1 callersMethodset_data
Set a data key in the workflow state. Args: workflow_id: Workflow ID key: Data key value: Data v
gstack-skills/scripts/state_manager.py:107
Method__init__
Initialize the state manager. Args: state_dir: Directory to store state files
gstack-skills/scripts/state_manager.py:26
Method__init__
Initialize the command router. Args: skills_base_path: Base path to the skills directory
gstack-skills/scripts/command_router.py:104
Methodadd_step
Add a step to the workflow. Args: workflow_id: Workflow ID skill_name: Name of the skill that executed this
gstack-skills/scripts/state_manager.py:146
Methodlist_available_skills
List all available skills. Returns: List of skill names
gstack-skills/scripts/command_router.py:208