cd /news/developer-tools/show-hn-task-and-test-management-as-… · home topics developer-tools article
[ARTICLE · art-137359] src=github.com ↗ pub= topic=developer-tools verified=true sentiment=· neutral

Show HN: Task and test management as YAML in your Git repo (VS Code)

Gitoza Lite, a VS Code extension that manages tickets, releases, wiki pages, and test cases as plain YAML files under a repository's `.gitoza-lite/` directory, was released on the VS Code Marketplace and requires VS Code 1.85 or later. The extension stores every entity as YAML front matter plus a Markdown body so users can `git add`, `git diff`, and merge changes in pull requests, and it supports drafting tickets by asking Cursor, Copilot, or ChatGPT to write a YAML file that is then refined in the extension. Gitoza Lite uses only the `.gitoza-lite/` path and does not read or modify Gitoza Desktop data under `.gitoza/`, with no automatic migration between the two.

read4 min views1 publishedSep 22, 2026
Show HN: Task and test management as YAML in your Git repo (VS Code)
Image: Michielbdejong (auto-discovered)

Manage tickets, releases, wiki pages, and test cases without leaving your repo. Everything is plain YAML under .gitoza-lite/ — browse and edit it from a structured UI in VS Code, then share work with your team through git and branches like any other code.

Open a project, click through tickets, edit and save, search, and plan by release:

Ask Cursor, Copilot, or ChatGPT to draft a ticket the same way you’d ask for a code change. The assistant writes a YAML file in the repo; open it in Gitoza Lite to refine status, release, and details — then commit and review in a PR. No built-in AI required.

  • Draft with AI — generate a.yaml file, then open and refine it in Gitoza Lite before you commit.
  • Docs and tasks as code — every entity is a file you cangit add ,git diff , and merge in pull requests.
  • Same file shape everywhere — YAML front matter + Markdown body; filename stem is the entity id.

Browse the Test Repository, create a case, and run a manual Pass / Fail / Skip flow:

This repository ships both extension source and a seeded handbook under .gitoza-lite/ (wiki, tickets, test cases, and a smoke run). The handbook is repo demo data only — it is excluded from the published .vsix.

  1. Clone this repository and open the folder in VS Code.
  2. Install Gitoza Lite from the Marketplace, or pressF5 (Run Extension ) from a development checkout — the host opens.dev/handbook-workspace (symlinked handbook) so it does not jump back to the parent window.
  3. Run Gitoza Lite: Open Tickets, Wiki & Tests (or click the Gitoza Lite Activity Bar icon).
  4. Start here:
  • Wiki02-getting-startedWelcome — open this handbook (W-LITE01 )
  • Tickets → projectGitoza_LiteWelcome — start here (LITE-WELCOM )
  • Test Repository → projectgitoza.lite.handbook
  • Test RunR-SMOKE1 (Handbook smoke)

Requirements: VS Code 1.85+ and an open workspace folder.

  1. Open a repository in VS Code.
  2. The Gitoza Lite tab opens in the editor area when the extension activates (when a.gitoza-lite/ root exists, or after you run the open command).
  3. If the tab was closed, click the Gitoza Lite icon in the Activity Bar, or runGitoza Lite: Open Tickets, Wiki & Tests from the Command Palette.
  4. Use the left icon rail to switch between Test Repository ,Test Run ,Tickets ,Releases , andWiki .
  5. Create a first project (tests or tickets) or wiki page from the empty state to initialize the matching folder under .gitoza-lite/ .

Workspace paths: This extension uses .gitoza-lite/ only. It does not read or modify Gitoza Desktop paths under .gitoza/. Copy or move files manually if you already have Desktop data — there is no automatic migration.

Module Path
Test cases .gitoza-lite/test/cases/
Test runs .gitoza-lite/test/run/
Tickets .gitoza-lite/tasks/tickets/{project}/
Releases .gitoza-lite/tasks/tickets/{project}/releases/
Wiki .gitoza-lite/wiki/
  • Tickets — two-column project tree + detail; create tickets with auto ids (PREFIX-XXXXXX ); edit metadata + Markdown
  • Releases — project-scoped release YAML; link from ticketrelease field
  • Wiki — two-column folder/page tree + detail; immutableW-… page ids; title/tags/status + Markdown
  • Test Repository — three-column UI for projects, suites, and cases
  • Test Run — YAML-backed manual runs with Pass / Fail / Skip
  • Local-first — reads and writes YAML on disk; no SQLite or cloud dependency
  • Manual save — Edit, then Save (no auto-save)
---
title: Fix login redirect
type: bug
status: open
priority: high
tags: [auth]
---

## Description
…

Path: .gitoza-lite/tasks/tickets/{project}/{PREFIX}-{id}.yaml. Project meta: .project.yaml with ticket_prefix.

---
release_id: demo/1.1.0
name: 1.1.0
status: open
---

Path: .gitoza-lite/tasks/tickets/{project}/releases/{stem}.yaml.

---
title: Architecture overview
tags: [handbook]
status: published
---

Markdown body…

Path: .gitoza-lite/wiki/{folders…}/W-XXXXXX.yaml.

Each test case is a YAML file with front matter and a Markdown body. The extension writes only editable fields on create/save (title, priority, tags, status, requirement_id, assigned_to, automated, params, and the Markdown body).

---
title: Login with valid credentials
priority: high
tags: [smoke, auth]
status: active
---

## Steps
1. Open the login page
2. Enter valid credentials

## Expected result
User is redirected to the dashboard.
---
title: Sprint 42 smoke
---
cases:
  - path: .gitoza-lite/test/cases/my_project/suite/login.yaml
    result: pending
  - path: .gitoza-lite/test/cases/my_project/suite/logout.yaml
    result: passed

Supported result values: pending, passed, failed, skipped.

Built by Gitoza. Tickets, wiki, releases, and tests stay the same YAML shape whether you edit them in VS Code or elsewhere.

Gitoza Lite is the in-editor workflow for developers. When the whole team needs to work on that same project data — including people who don’t live in git day to day — keep assets local and use Gitoza Desktop for shared task views, sync, and progress tracking.

See CONTRIBUTING.md for build, test, and packaging instructions.

MIT — see LICENSE.

── more in #developer-tools 4 stories · sorted by recency
── more on @gitoza lite 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/show-hn-task-and-tes…] indexed:0 read:4min 2026-09-22 ·