📊 Agent Spend Report 2026-02-27
| Agent | Input | Output | Cost |
|---|---|---|---|
| dev | 146,024 | 311,896 | $27.45 |
| qa | 241,673 | 255,904 | $27.23 |
| architect | 26,834 | 62,288 | $25.31 |
| po | 22,938 | 88,639 | $11.30 |
| TOTAL | 437,469 | 718,727 | $91.28 |
📊 Agent Spend Report 2026-02-27
| Agent | Input | Output | Cost |
|---|---|---|---|
| dev | 146,024 | 311,896 | $27.45 |
| qa | 241,673 | 255,904 | $27.23 |
| architect | 26,834 | 62,288 | $25.31 |
| po | 22,938 | 88,639 | $11.30 |
| TOTAL | 437,469 | 718,727 | $91.28 |
| const { exec, spawn } = require("child_process"); | |
| const fs = require("fs"); | |
| const { promisify } = require("util"); | |
| import { WebSocket } from "ws"; | |
| async function getWebSocketDebuggerUrl() { | |
| const res = await fetch("http://localhost:9229/json"); | |
| const data = await res.json(); | |
| return data[0].webSocketDebuggerUrl; | |
| } |
| # Create a new package | |
| $ mkdir test-esm | |
| $ cd test-esm | |
| $ npm init -y | |
| # make sure you are using Node 14+ | |
| # if you don't have nvm, check this out https://github.com/nvm-sh/nvm#install--update-script | |
| $ nvm install 14 | |
| # install react and react-dom |
| // importing dependencies | |
| import React from "react"; | |
| // exporting | |
| export default function Title({ text }) { | |
| return React.createElement("h1", null, text); | |
| } |
| (function (root, factory) { | |
| if (typeof define === "function" && define.amd) { | |
| define(["react"], factory); | |
| } else if (typeof exports === "object") { | |
| module.exports = factory(require("react")); | |
| } else { | |
| root.Title = factory(root.React); | |
| } | |
| }(this, function (React) { | |
| return function Title({ text }) { |
| // importing dependencies | |
| const React = require('react'); | |
| //exporting | |
| module.exports = function Title({ text }) { | |
| return React.createElement('h1', null, text) | |
| }; |
| // importing dependencies | |
| define(['react'], function (React) { | |
| // exporting | |
| return function Title({ text }) { | |
| return React.createElement('h1', null, text) | |
| }; | |
| }); |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| brew install zsh | |
| brew install fzf | |
| $(brew --prefix)/opt/fzf/install | |
| brew install go | |
| brew install jq | |
| brew install kubectl | |
| brew install romkatv/powerlevel10k/powerlevel10k | |
| echo "source /opt/homebrew/opt/powerlevel10k/powerlevel10k.zsh-theme" >> ~/.zshrc |
| version: "3" | |
| services: | |
| redis: | |
| image: redis | |
| ports: | |
| - "6379:6379" | |
| restart: always |