Version: 1.0.0 Protocol Version: 2024-11-05 Last Updated: 2026-01-10
| # Create a new worktree and branch from within current git directory. | |
| ga() { | |
| if [[ -z "$1" ]]; then | |
| echo "Usage: ga [branch name]" | |
| exit 1 | |
| fi | |
| local branch="$1" | |
| local base="$(basename "$PWD")" | |
| local path="../${base}--${branch}" |
(Blog version available at https://inferal.com/blog/workspace-architecture/)
Update: Inferal Workspace is going open source!
Your org's brain that AI can use
This is not our core product. This document describes our internal operating environment - how we run the company. We share it to show the environment you'd join and demonstrate our philosophy in action. For what we're building, see What We're Building below.
Here's my AGENTS.md (also linked from CLAUDE.md as @AGENTS.md) for hacking
agentically on MDFlow recipes.
I have this in ~/.mdflow/, and the agents/recipes live in ~/.mdflow/agents/ and added to the path
so that they can be invoked as commands.
With this I can use a coding agent like Claude Code or GitHub Copilot in VSCode and say something like:
> create a new agent using copilot that reviews all the code files in this directory as a poem
| {{ states.binary_sensor | |
| | selectattr('attributes.device_class', 'in', ['door','window']) | |
| | selectattr('state', 'equalto', 'on') | |
| | list | count }} |
| #!/usr/bin/env bash | |
| # | |
| # !!!!!!!!!!!!!! | |
| # SCRIPT IS BROKEN FOR NOW, NOT GOT NO TIME TO CHANGE, SORRY | |
| # MIGHT GET UPDATED IN A MONTH OR SO... :( | |
| # !!!!!!!!!!!!!! | |
| # | |
| # gemwrap: run gemini, mirror its output, and log token stats + git root. | |
| # Can also parse existing gemini output from stdin when used with --parse-only | |
| # |
| // Zed settings | |
| // | |
| // For information on how to configure Zed, see the Zed | |
| // documentation: https://zed.dev/docs/configuring-zed | |
| // | |
| // To see all of Zed's default settings without changing your | |
| // custom settings, run `zed: open default settings` from the | |
| // command palette (cmd-shift-p / ctrl-shift-p) | |
| { | |
| "agent": { // Check docs to enable this feature: https://zed.dev/docs. |