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

  1. Validate argument: Ensure a file path was provided and the file exists.

  2. 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)
    
Related skills

More from bluewaves-creations/bluewaves-skills

Installs
2
GitHub Stars
1
First Seen
Mar 28, 2026