triggercmd
Installation
SKILL.md
TriggerCMD Skill
Use this skill to inspect and run TRIGGERcmd commands on any computer that is registered with the account tied to the local API token.
Authentication
The skill supports two authentication methods (checked in order):
-
Environment Variable (recommended): Set
TRIGGERCMD_TOKENto your personal API token- Export it in your shell:
export TRIGGERCMD_TOKEN='your-token-here' - Or prefix individual commands:
TRIGGERCMD_TOKEN='your-token-here' <command>
- Export it in your shell:
-
Token File: Store token at
~/.TRIGGERcmdData/token.tkn- The file should contain only the raw token text (no quotes, spaces, or trailing newline)
- Must be permission-restricted:
chmod 600 ~/.TRIGGERcmdData/token.tkn - To create:
mkdir -p ~/.TRIGGERcmdData && read -s TOKEN && printf "%s" "$TOKEN" > ~/.TRIGGERcmdData/token.tkn && chmod 600 ~/.TRIGGERcmdData/token.tkn