Commit 3615d23
2025-09-24 21:14:55
Changed files (2)
.gitignore
@@ -0,0 +1,5 @@
+# Ignore everything except markdown files and directories
+/*
+!*.md
+!*/
+!.gitignore
README.md
@@ -0,0 +1,27 @@
+# Issue Tracker
+
+This branch contains all issues for this repository.
+Each issue is a markdown file with YAML frontmatter.
+
+## Structure
+
+Issues are stored as markdown files with the following frontmatter:
+
+```yaml
+---
+id: 001
+title: Issue title
+status: open
+type: bug|feature|task
+created: 2025-09-24
+assignee: username
+---
+```
+
+## Usage
+
+Use the tissue CLI to manage issues:
+- `tissue new` - Create a new issue
+- `tissue list` - List all issues
+- `tissue view <id>` - View an issue
+- `tissue update <id>` - Update an issue