vf-cli-output

vf-cli-output

Veryfront CLIの端末出力、エラー表示、終了コード、--jsonによる機械可読出力の設計パターンを定めるスキル。

AIスキル大辞典による日本語要約
品質評価93/100評価確度:十分
人気度(GitHub Star) 43発掘スコア 92
01

このSkillでできること

  • CLIやTUIの人間向け出力を一貫した形式で設計する
  • 警告・エラー・成功メッセージの表示方針を整理する
  • 終了コードの意味を実装や仕様に反映する
  • --json形式の機械可読出力を設計する
02

使い方

01
STEP 1

人間向け出力を基本とし、シンプルで一貫した表現にする

02
STEP 2

警告には黄色、エラーには赤を使い、テキストアイコンを利用する

03
STEP 3

エラーには実行可能な解決策やTry形式の提案を添える

04
STEP 4

--jsonでは1行1オブジェクト、success、dataまたはerrorを含め、進捗はstderrに分ける

03

Skillのインストール

このGitHubリポジトリにあるSkillを確認し、現在の環境に適した方法でインストールしてください。
インストール後、正常に利用できることを確認し、基本的な使い方も簡潔に説明してください。

Repository:
https://github.com/veryfront/veryfront-code
手動でインストールする

README / SKILL.mdから機械抽出できたコマンドのみ表示しています。推測したコマンドではありません。

npm install -g veryfront@latest
curl -fsSL https://veryfront.com/install.sh | sh
brew install veryfront/tap/veryfront
04

このSkillを使うプロンプト例

Skill名を明示すると、意図したSkillを使わせやすくなります。自動発動型では必須とは限りません。

Veryfront CLIのプロジェクト未検出エラーについて、人間向け表示と--json出力を、指定された終了コードと出力ルールに従って設計してください。
出力例を見る
人間向け: ✗ No project found in current directory
終了コード: 1
JSON: {"success":false,"error":{"code":"PROJECT_NOT_FOUND","message":"No project found in current directory"}}
05

安全性チェック

自動解析による参考情報です。Skillの安全性を保証するものではありません。

外部API通信検出あり
Shellコマンド実行検出あり
ファイル読み取り明確な記述なし
ファイル書き込み明確な記述なし
ネットワークアクセス検出あり
認証情報検出あり
検出根拠を見る
  • shell: rough npm for local development commands and the TUI: ```bash npm install -g veryfront@latest ``` The standalone binary includes the runtime. Download
  • shell: time. Downloads range from 0.9 to 1.2 GB by platform: ```bash curl -fsSL https://veryfront.com/install.sh | sh # or brew install veryfront/tap/veryfron
  • network: ge from 0.9 to 1.2 GB by platform: ```bash curl -fsSL https://veryfront.com/install.sh | sh # or brew install veryfront/tap/veryfront ``` ## Project
  • network: ffolding, tests, linting, and HMR. See [Coding agents](https://veryfront.com/docs/code/guides/coding-agents) and the [project structure guide](https://ve
  • credential: agent -- --template ai-agent cd my-agent export OPENAI_API_KEY=" " npm run dev [large code block omitted] | Starter | Starting point
06

関連Skill