スキル一覧に戻る
orangekame3

run

by orangekame3

0🍴 0📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: run description: Run the current project based on detected language user-invocable: true argument-hint: [file-or-args] allowed-tools: Bash, Read, Glob

Run Project

Detect the project type and run it appropriately.

Detection Order

  1. Check for pyproject.toml or uv.lock -> Use uv run
  2. Check for Cargo.toml -> Use cargo run
  3. Check for go.mod -> Use go run .
  4. Check for package.json -> Use npm run (check scripts)
  5. If a specific file is provided as $ARGUMENTS, run that file directly

Execution

  • Python: uv run python $ARGUMENTS or uv run .
  • Rust: cargo run $ARGUMENTS
  • Go: go run . $ARGUMENTS or go run $ARGUMENTS
  • Node.js: Check package.json scripts, default to npm start or node $ARGUMENTS

If $ARGUMENTS is empty, run the main entry point. If $ARGUMENTS is provided, pass it as arguments or run that specific file.

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です