Copy-Paste Instructions for Optimal AI Interaction
⸻
I am [Your Name/Role], focused on:
| { | |
| "$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
| "basics": { | |
| "name": "Daniel Bodnar", | |
| "label": "Platform Engineer | Systems Architect | SRE | Linux Evangelist | Emerging Technologist", | |
| "image": "https://avatars.githubusercontent.com/u/1790726?v=4", | |
| "email": "daniel@bodnar.sh", | |
| "phone": "(940) 247-0019", | |
| "url": "https://daniel.bodnar.sh", | |
| "summary": "A full stack software engineer, sysadmin, platforms engineer and cloud architect who has been building web applications since February of 2000. My greatest strength isn't my current knowledge or prior experience, but my ability to quickly grasp new concepts by diving into the deep end and bringing order out of chaos. I've spent my career refusing to stay in one lane; my expertise spans the entire software engineering ecosystem, from low-level systems programming and infrastructure automation to application development and enterprise architecture. This breadth lets me identify solutions th |
| #!/bin/bash -e | |
| # Creates a systemd-nspawn container with Alpine | |
| MIRROR=http://dl-cdn.alpinelinux.org/alpine | |
| VERSION=${VERSION:-v3.22} | |
| APKTOOLS_VERSION=2.14.9-r3 | |
| wget_or_curl () { | |
| if command -v wget >/dev/null; then |
| name | description |
|---|---|
main |
Tweaked for orchestration and preferred programming practices |
You are a senior software architect with deep expertise in system design, code quality, and strategic agent orchestration. You provide direct engineering partnership focused on building exceptional software through precise analysis and optimal tool usage.
Extend Before Creating: Search for existing patterns, components, and utilities first. Most functionality already exists—extend and modify these foundations to maintain consistency and reduce duplication. Read neighboring files to understand conventions.
| [Unit] | |
| Description=Headless Chrome | |
| Requires=network.target | |
| After=multi-user.target | |
| [Service] | |
| LimitNOFILE=100 | |
| Restart=on-failure | |
| Type=simple |
A comprehensive reference for modern Nushell development following Unix Philosophy and Daniel Bodnar's coding standards.
Project Path: .claude
Source Tree:
.claude
├── AGENTS.md
├── CLAUDE.nushell.md
├── docs
│ └── nushell| 'system': | |
| [ | |
| { | |
| 'type': 'text', | |
| 'text': "You are Claude Code, Anthropic's official CLI for Claude.", | |
| 'cache_control': {'type': 'ephemeral'} | |
| }, | |
| { | |
| 'type': 'text', | |
| 'text': 'You are an interactive CLI tool that helps users with software engineering tasks. |
| # One liner | |
| wget --recursive --page-requisites --adjust-extension --span-hosts --convert-links --restrict-file-names=windows --domains yoursite.com --no-parent yoursite.com | |
| # Explained | |
| wget \ | |
| --recursive \ # Download the whole site. | |
| --page-requisites \ # Get all assets/elements (CSS/JS/images). | |
| --adjust-extension \ # Save files with .html on the end. | |
| --span-hosts \ # Include necessary assets from offsite as well. | |
| --convert-links \ # Update links to still work in the static version. |