Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:
--windowed \
--name MkPFS \
--icon dist/icon.ico \
mkpfs/gui.py
mkpfs/gui/__init__.py
mv "dist/MkPFS.exe" "dist/mkpfs-${ART_VERSION}-windows-${ARCH}.exe"

- name: Build macOS app and pkg
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
--add-data "assets:assets" \
--hidden-import cryptography \
--hidden-import customtkinter \
mkpfs/gui.py
mkpfs/gui/__init__.py

# Post-process app bundle Info.plist to set user-friendly display name and version
PLIST="dist/MkPFS.app/Contents/Info.plist"
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
--windowed \
--name MkPFS \
--icon dist/icon.ico \
mkpfs/gui.py
mkpfs/gui/__init__.py
mv "dist/MkPFS" "dist/mkpfs-${ART_VERSION}-linux-${ARCH}"
# create a tar.gz for linux artifact for easy distribution
(cd dist && tar -czf "mkpfs-${ART_VERSION}-linux-${ARCH}.tar.gz" "mkpfs-${ART_VERSION}-linux-${ARCH}")
Expand Down
14 changes: 6 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,6 @@
/legacy/
#/current-plan

# Related project files
/related-projects/*
!/related-projects/shadowmountplus
!/related-projects/pkgtool
!/related-projects/liborbispkg
!/related-projects/kstuff-lite
!/related-projects/liborbispkg-wiki
!/related-projects/*.md

# Temporary files and scratch artifacts
/tmp/*
Expand Down Expand Up @@ -222,3 +214,9 @@ target/
# Research files
research/
/config.json

# Graphify
graphify-out/

# Pi-Tasks settings
.pi-tasks/
9 changes: 9 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,12 @@ uv run mkpfs --help
- Commits/PRs: .agents/skills/pr-and-commit-writing/SKILL.md (use when generating public commit/PR text)
- HTML reporting: .agents/skills/html-report-builder/SKILL.md (use for producing public commit/PR text)
- TEMP folder usage: .agents/rules/tmp-usage.md (use ./tmp/ for transient artifacts only)

## Token efficiency

Respond like smart caveman. Cut all filler, keep technical substance.
- Drop articles (a, an, the), filler (just, really, basically, actually).
- Drop pleasantries (sure, certainly, happy to).
- No hedging. Fragments fine. Short synonyms.
- Technical terms stay exact. Code blocks unchanged.
- Pattern: [thing] [action] [reason]. [next step].
Loading
Loading