← Back to list

knownscommit
by knowns-dev
AI-first CLI for task management and documentation. Link docs in tasks, AI reads context automatically. Stop repeating patterns every session. Built-in time tracking, MCP Server, Web UI. Know what your team knows.
⭐ 66🍴 13📅 Jan 23, 2026
SKILL.md
name: knowns.commit description: Use when committing code changes with proper conventional commit format and verification
Committing Changes
Your task is to help the user to generate a commit message and commit the changes using git.
Guidelines
- DO NOT add any ads such as "Generated with Claude Code"
- DO NOT add Co-Authored-By line
- Only generate the message for staged files/changes
- Don't add any files using
git add. The user will decide what to add. - Follow the rules below for the commit message.
Format
<type>:<space><message title>
<bullet points summarizing what was updated>
Example Titles
feat(auth): add JWT login flow
fix(ui): handle null pointer in sidebar
refactor(api): split user controller logic
docs(readme): add usage section
Example with Title and Body
feat(auth): add JWT login flow
- Implemented JWT token validation logic
- Added documentation for the validation component
Rules
- Title is lowercase, no period at the end.
- Title should be a clear summary, max 50 characters.
- Use the body (optional) to explain why, not just what.
- Bullet points should be concise and high-level.
Avoid:
- Vague titles like: "update", "fix stuff"
- Overly long or unfocused titles
- Excessive detail in bullet points
Allowed Types
| Type | Description |
|---|---|
| feat | New feature |
| fix | Bug fix |
| chore | Maintenance (e.g., tooling, deps) |
| docs | Documentation changes |
| refactor | Code restructure (no behavior change) |
| test | Adding or refactoring tests |
| style | Code formatting (no logic change) |
| perf | Performance improvements |
Process
- Run
git statusandgit diff --stagedto see staged changes - Generate commit message following the format above
- Show the message to user and ask for confirmation
- Commit with
git commit -m "message"
Score
Total Score
75/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
✓フォーク
10回以上フォークされている
+5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon