Replies: 1 comment
-
Why your token-usage monitors look inactiveWhen a workflow A new The fix: wrap the Copilot binarySpec Kit lets you swap in your own executable via an env var, so you can slip your usage tool into the chain: # Tell Spec Kit's Copilot integration to launch this wrapper
# instead of the plain `copilot` binary.
export SPECKIT_INTEGRATION_COPILOT_EXECUTABLE=/usr/local/bin/copilot-with-usage#!/usr/bin/env bash
# /usr/local/bin/copilot-with-usage
# Run the usage tracker, then hand off to the real copilot CLI
# with all the same arguments the workflow passed in ("$@").
exec ccusage wrap -- copilot "$@"Now every step the workflow runs goes through your monitor, so it's guaranteed to be active. Good to know
That's it — one env var plus a two-line wrapper, or a |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Can I use cavemen, ponytail kind of ai agent token usage helpers with workflow command? Since workflow command creates and goes in agents cli system itself. I cant verify the ponytail is actually active when they are working. I feel like they dont work. How do i make my workflows work with other tools like this? Thanks.
Beta Was this translation helpful? Give feedback.
All reactions