code-execution-fallback

Installation
SKILL.md

Code Execution Fallback & Workspace Anchoring

This skill provides a robust pattern for executing code when the primary method fails, combined with proper workspace path management to prevent file location errors.

Core Techniques

1. Workspace Path Anchoring

Always establish and verify your working directory at the start of any task:

# At the beginning of any code execution
import os
workspace_path = os.getcwd()
print(f"Working directory: {workspace_path}")
Installs
1
Repository
hkuds/openspace
GitHub Stars
6.7K
First Seen
Jun 1, 2026
code-execution-fallback — hkuds/openspace