Skip to content

Instantly share code, notes, and snippets.

View ganileni's full-sized avatar
🚀

Orazio Angelini ganileni

🚀
View GitHub Profile
@ganileni
ganileni / SKILL.md
Created May 15, 2026 09:18
launch-sibling-agent skill (Claude Code) — dispatch a background sibling session with auto-composed context briefing, native worktree support, and conditional permission defaults.

name: launch-sibling-agent description: | Spawn a parallel background agent via claude --bg with an auto-composed context handoff, so a subtask can be tracked independently in claude agents. Use when the user invokes /launch-sibling-agent. Supports optional worktree= (delegates to the native claude --worktree flag), working-directory=, permission-mode= (defaults: auto for a newly created worktree, plan otherwise), and --no-confirm. author: Claude

@ganileni
ganileni / SKILL.md
Created May 14, 2026 13:38
launch-sibling-agent — a Claude Code skill that spawns a parallel background agent (claude --bg) with an auto-composed context handoff, so subtasks can be tracked independently in 'claude agents'. Supports worktree=, working-directory=, permission-mode=, --no-confirm.

name: launch-sibling-agent description: | Spawn a parallel background agent via claude --bg with an auto-composed context handoff, so a subtask can be tracked independently in claude agents. Use when the user invokes /launch-sibling-agent. Supports optional worktree=, working-directory=, permission-mode=, and --no-confirm. author: Claude version: 1.0.0 date: 2026-05-14

@ganileni
ganileni / wrapping.ipynb
Last active August 31, 2018 16:14
Wrapping a MATLAB package in Python
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ganileni
ganileni / saws
Created August 10, 2018 19:34
saws: short-aws wrapper
#!/bin/bash
# shortens aws commands, so you don't have to retype your long aws address
# every time. so for example
# $ aws cp s3://my-super-long-aws-address/directory/file ~/directory/file
# becomes:
# $ saws cp //aws/directory/file ~/directory/file
# just change the value of AWSADDRESS in the script.
AWSADDRESS='my-super-long-aws-address'