agentio-status

Inspect configured agentio profiles and test credential status via CLI.

2|Updated Jan 3, 2026
One-click install
npx skills add https://github.com/plosson/agentio --skill agentio-status-plosson
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agentio-status
Source: https://github.com/plosson/agentio/tree/main/claude/skills/agentio-status
Command: npx skills add https://github.com/plosson/agentio --skill agentio-status-plosson

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When running LLM agent workflows in CI/CD pipelines, you need a quick way to verify that your agentio profiles are configured correctly and that credentials for services like Gmail, Slack, and JIRA are still valid before automation runs. ## Core Features & Use Cases - Profile Overview: List every configured agentio profile in one command. - Credential Testing: Validate credentials against live APIs, or skip network calls with the --no-test flag for fast offline checks. - Machine-Readable Output: Use --json to pipe status into jq or hand it to another agent for automated decision-making. - Use Case: In a GitHub Actions workflow, run agentio status --json as a pre-flight check to confirm all service credentials are healthy before executing an inbox triage job. ## Quick Start Ask the agent to show all configured agentio profiles and verify their credentials are working.

Frequently Asked Questions about agentio-status

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check agentio credential status?▼

Run agentio status to list every configured profile and test its credentials against the live APIs. This confirms your Gmail, Slack, JIRA, and other service connections are working before running automation.

How to check agentio profiles without network calls?▼

Use agentio status --no-test to display all configured profiles without making test API calls. This is fast and works offline, useful when you only need to see which profiles exist.

Can I get agentio status output as JSON?▼

Yes, run agentio status --json to get machine-readable output. This is designed for piping to jq or handing to another agent for automated credential verification in CI pipelines.

Why run agentio status in a CI/CD pipeline?▼

Running agentio status as a pre-flight check verifies that imported vault credentials are valid before your workflow executes. This catches expired or misconfigured credentials early instead of failing mid-automation.