Back to list
impactaky

test

by impactaky

OpenSpec files for shelffiles

0🍴 0📅 Jan 17, 2026

SKILL.md


name: test description: Run Docker build and argc verification tests

Test Skill

Run the same test checks as CI (docker-build.yml and argc-verify.yml).

Commands

Docker Build Test

Build the test Docker image to verify the complete setup:

cd ./shelffiles
docker build -f ./test/Dockerfile .

Argc Verification

Verify setup.sh is correctly generated by argc:

cd ./shelffiles
cp setup.sh setup.sh.sh
argc --argc-build setup.sh.sh > setup.sh.generated
if ! cmp -s setup.sh setup.sh.generated; then
  echo "ERROR: setup.sh is not generated by 'argc --argc-build setup.sh'"
  echo "Please run 'argc --argc-build setup.sh > setup.sh' to regenerate"
  diff setup.sh setup.sh.generated || true
  rm -f setup.sh.sh setup.sh.generated
  exit 1
else
  echo "setup.sh is correctly generated by argc --argc-build"
  rm -f setup.sh.sh setup.sh.generated
fi

Score

Total Score

35/100

Based on repository quality metrics

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
言語

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

0/5
タグ

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

0/5

Reviews

💬

Reviews coming soon