소스 정보
- 저장소
- truecourse-ai/truecourse
- 최근 소스 활동
- 2026년 5월 1일 16:04
- 감지된 SKILL.md 언어
- 영어
- 스타
- 523
- 포크
- 42
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/truecourse-ai/truecourse --skill truecourse-analyze명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | truecourse-analyze |
| description | Run TrueCourse architecture analysis on this repository |
| user_invocable | true |
| triggers | ["analyze this repo","run analysis","check my code","run a diff check"] |
Run architecture analysis on the current repository using TrueCourse.
npx -y — without -y, npx will hang on the "Ok to proceed?" prompt whenever the user hasn't cached the latest truecourse version (which happens every time we publish a new release).--llm without first relaying the token estimate to the user and getting approval. See the LLM flow below.Ask the user whether they want a full analysis or a diff check. If they said "diff" in their request, default to diff.
npx -y truecourse analyzenpx -y truecourse analyze --diffLLM rules add higher-value insights but cost tokens per run. Ask the user one question: "Run LLM-powered rules this time?" If the user is unsure, offer to run deterministic-only first (no tokens, fast) and add LLM later.
--llm to the command.--no-llm.You MUST pass either --llm or --no-llm — running without either in a non-interactive shell will exit with an error naming the flags.
Use the Bash tool. This is long-running (minutes, especially with --llm) — use a timeout of at least 600000ms (10 minutes).
When the command finishes, read the printed summary and relay the key numbers:
15 violations (2 critical, 5 high, 8 medium).Changed files: N (X modified, Y new, Z deleted) and Summary: N new issues, N resolved. If you see ⚠ Results may be stale — baseline analysis has changed., surface that warning to the user and suggest running a full npx -y truecourse analyze to refresh the baseline.Tell the user they can:
/truecourse-list to see the full violation list./truecourse-fix to apply suggested fixes.If the run was a full analyze on main (not a feature branch, not --diff), also suggest committing .truecourse/LATEST.json:
git add .truecourse/LATEST.json && git commit -m "refresh truecourse baseline"
That's the baseline --diff and the pre-commit hook read. Committing it on main lets fresh clones and git worktree add checkouts use the hook without re-running analyze. Don't suggest this on feature branches — LATEST.json updates from multiple PRs will conflict on a large generated JSON.