소스 정보
- 저장소
- IJHack/QtPass
- 최근 소스 활동
- 2026년 6월 16일 10:45
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1,146
- 포크
- 171
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/IJHack/QtPass --skill qtpass-docs명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | qtpass-docs |
| description | Documentation guide for QtPass - README, FAQ, localization |
| license | GPL-3.0-or-later |
| metadata | {"audience":"developers","workflow":"documentation"} |
| File | Purpose |
|---|---|
| README.md | Main documentation, installation, usage |
| FAQ.md | Frequently asked questions, troubleshooting |
| CHANGELOG.md | Release history, changes |
| CONTRIBUTING.md | Developer contribution guidelines |
| CODE_OF_CONDUCT.md | Community code of conduct |
| Doxyfile | API documentation configuration |
| Windows.md | Windows-specific installation and build |
## Question Title
**Problem:** Description of the issue
**Solution:** Step-by-step solution
**Related:** Links to relevant issues
See qtpass-localization skill for comprehensive guide.
# Generate API docs
doxygen Doxyfile
# Or use project-specific docs command
# View
open docs/index.html
THIS IS THE PATTERN - always run before pushing:
# Check formatting (this is the pattern)
npx prettier --check "**/*.md"
# Format all markdown files
npx prettier --write "**/*.md"
# Format specific file
npx prettier --write README.md
npx prettier --write <markdown-file>
npx prettier --write "**/*/SKILL.md"
npx prettier --write <yaml-file>
npx prettier --write .github/workflows/*.yml
FAQ.mdnpx prettier --write FAQ.mdWhen releasing a new version, update download links:
# Find version strings in README
grep -n "1\.5\|download" README.md
Update:
# Generate with doxygen
doxygen Doxyfile
# Output goes to docs/
ls docs/index.html
CI pins Doxygen 1.17.0 and treats warnings as errors; a local Doxygen of a
different version may report differently. The docs.yml install step fetches
the pinned binary from the GitHub release mirror first, then doxygen.nl, with
retries (doxygen.nl outages previously caused spurious docs failures).
Always format Markdown with prettier before committing:
# Wrong - may fail CI
git commit -m "Update FAQ"
# Correct
npx prettier --write FAQ.md
git commit -m "Update FAQ"
When adding links to issues or PRs:
# Use full GitHub URLs (they redirect correctly)
[Issue #123](https://github.com/IJHack/QtPass/issues/123)
# Not relative paths
[Issue #123](issues/123) # Broken
QtPass changes frequently. When updating installation instructions:
Keep CHANGELOG entries consistent:
## [1.5.1] - 2026-03-30
### Fixed
- Issue #123: Description of fix
### Added
- New feature description
When adding new public APIs, every public symbol in a header needs a Doxygen doc block:
/**
* @brief Brief description.
* @param param1 Description of first parameter.
* @return Description of return value.
*/
The CI enforces zero Doxygen warnings via docs.yml. WARN_AS_ERROR = FAIL_ON_WARNINGS in Doxyfile causes the step to fail on any undocumented public symbol.
| Setting | Value | Purpose |
|---|---|---|
FILE_PATTERNS | *.cpp *.h *.md | Includes cpp, header, and Markdown files |
EXTRACT_ALL | NO | Required for WARN_NO_PARAMDOC to work |
WARN_NO_PARAMDOC | YES | Requires @param/@return on all public symbols |
WARN_AS_ERROR | FAIL_ON_WARNINGS | Fails CI on any warning |
doxygen Doxyfile
# Any output = warning = CI will fail
/** */ blocks not immediately above their declaration@return on non-void functions (required with WARN_NO_PARAMDOC = YES)@unknowncommand typos in doc blocks