Back to list
jongwony

fossil-ui

by jongwony

0🍴 0📅 Jan 25, 2026

SKILL.md


name: fossil-ui description: | This skill should be used when the user asks to "convert git to fossil", "export repo to fossil", "browse git history in fossil", "launch fossil UI", or "view timeline in fossil". Exports current git repository to Fossil database and launches web UI for browsing. context: fork

Fossil UI

Export current git repository to Fossil database and launch web UI for browsing.

Workflow

1. Verify Prerequisites

which fossil && fossil version

If fossil not installed:

# macOS
brew install fossil

# Ubuntu/Debian
sudo apt-get install fossil

2. Generate Database Path

Store in temp directory with project-based naming:

/tmp/fossil-ui/<project-dirname>.fossil

Example: /Users/choi/.claude -> /tmp/fossil-ui/claude.fossil

mkdir -p /tmp/fossil-ui

3. Clean Existing Database

Remove existing database before creating new one (ephemeral usage):

rm -f /tmp/fossil-ui/<name>.fossil

4. Export and Import

git fast-export --all | fossil import --git /tmp/fossil-ui/<name>.fossil

5. Launch Fossil UI

fossil ui --page timeline /tmp/fossil-ui/<name>.fossil

If port 8080 is in use:

fossil ui --page timeline -P 8081 /tmp/fossil-ui/<name>.fossil

Browser opens automatically to timeline view. Press Ctrl+C to stop the server.

Notes

  • Fossil admin password is displayed during import (save for UI admin access)
  • Database is self-contained single file
  • Verify import: fossil info -R /tmp/fossil-ui/<name>.fossil
  • Temp files are cleaned on system reboot

Score

Total Score

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

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

+5
タグ

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

0/5

Reviews

💬

Reviews coming soon