inspect-package
Installation
SKILL.md
Inspect a .athenabrief or .athena package and display its contents.
$ARGUMENTS
The argument should be a file path to a .athenabrief or .athena file.
Steps
-
Validate argument: Ensure a file path was provided and the file exists.
-
Inspect package:
python3 -c " import json, zipfile, sys from pathlib import Path path = sys.argv[1] if not Path(path).exists(): print(f'Error: File not found: {path}') sys.exit(1)