Scottcjn

Dev Report Weekly — AI skill for Claude Code

AI community

Local-first desktop app that turns reviewed Git history into auditable weekly reports with Codex, Claude Code, or your own model.

How to install Dev Report Weekly

This entry records only its repository, not the path inside it, so there is no exact command to give. Open Scottcjn/dev-report-weekly and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Dev Report Weekly does

Local-first desktop app that turns reviewed Git history into auditable weekly reports with Codex, Claude Code, or your own model.

Alternatives in AI

  • Geo SEO Claude — GEO-first SEO skill for Claude Code 3.6k ★
  • Ataru — High-performance AI memory retrieval for local agent history — a Rust search core (SDK / API / JSON CLI) plus 351 ★
  • Abu Cowork — Open-source alternative to Claude Cowork — a local-first AI agent desktop app · multi-model · self-evolving sk 349 ★

README

DevWeek

DevWeek is a small desktop app that uses AI to generate work reports from local Git commits.

I made it because I was tired of going through commit history whenever I needed to write a work report.

What it does

  • Reads commits from one or more local Git repositories.
  • Filters commits by date and Git author.
  • Lets you review and exclude commits before generation.
  • Works with local Codex or Claude Code, as well as OpenAI-compatible APIs.
  • Produces editable Markdown and checks generated work items against the selected commits.

Run locally

You will need Node.js 22+, pnpm 10+, Rust stable, and the [Tauri prerequisites](https://v2.tauri.app/start/prerequisites/) for your operating system.

pnpm install
pnpm tauri dev

Then:

  1. Add one or more Git repositories.
  2. Check the detected Git identity in Settings.
  3. Select a time range and review the commits.
  4. Choose a model and generate the report.
  5. Edit or copy the generated Markdown.

Models

Local agents

DevWeek can use an existing Codex or Claude Code installation. The CLI must already be installed and signed in. DevWeek looks for it in `PATH`; `CODEX_BIN` and `CLAUDE_BIN` can be used to provide a custom path.

If needed, sign in first:

codex login
claude auth login

OpenAI-compatible APIs

You can also provide an endpoint, model name, and API key in Settings. This works with providers such as OpenAI and DeepSeek, and with local servers such as Ollama.

For Ollama, use an endpoint such as `http://localhost:11434/v1`. An API key is not required.

Data handling

  • Commits can be reviewed before anything is sent to a model.
  • Excluded commits and absolute repository paths are not sent.
  • API keys are kept in memory and are not saved by DevWeek.
  • Local agents run as temporary, non-interactive processes.

Development

pnpm check
pnpm test:rust

Built with React, TypeScript, Tauri, and Rust.

License

[Apache License 2.0](./LICENSE)