agentsclimarketplace

Briefs setup

Skill naxoc/claude-briefs/briefs-setup

Keep it brief. A lightweight focus system for working with Claude Code.

Install
npx -y skills add naxoc/claude-briefs --skill briefs-setup

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Sets up Claude Briefs structure in any project - creates a briefs directory with CURRENT.md, BACKLOG.md, PROGRESS.md, NOTES.md

SKILL.md

3.4 KB, 844 tokens by cl100k_base, as published. Nobody here has run it

Setup Claude Briefs

Creates the Briefs project management structure in the current project. Briefs is a lightweight system for managing focus across sessions - for both humans and LLMs.

What This Creates

A briefs directory with four files:

  • CURRENT.md - The heart of the system. One active task: context, planned approach, task list, session log.
  • BACKLOG.md - The larger project plan: up next, blocked, backlog, done.
  • PROGRESS.md - The long-term memory. Completed tasks with backstory and decisions. Written only by /briefs-done.
  • NOTES.md - Technical notes, gotchas, and references that outlive any single task.

The lifecycle that maintains them: /briefs-plan (settle the approach) → /briefs-work (execute, repeatable sessions) → user reviews and commits → /briefs-done (review against plan, archive, reset). /briefs-health audits when things feel muddled.

Steps

1. Ask where to put the briefs folder

Ask: "Where should I create the briefs folder?"

Present two options:

  • With this project - creates .briefs/ in the project root. Suggest adding .briefs/ to .gitignore (these are working notes, not source code).
  • Somewhere else - user provides an absolute path. Good for people who keep notes in Obsidian, a shared docs folder, or anywhere outside the repo.

2. Create the directory

mkdir -p <chosen-path>

3. Save the path

Create .claude/briefs-path containing the absolute path to the briefs folder. This lets the other briefs skills find it automatically in future sessions.

mkdir -p .claude
echo "<absolute-path-to-briefs-folder>" > .claude/briefs-path

If .briefs/ was chosen inside the project, store the absolute path anyway for consistency.

4. Create CURRENT.md

The skeleton every skill in the family expects (/briefs-plan fills it, /briefs-work maintains it, /briefs-done archives and resets it):

Working on: **<nothing — pick a task with /briefs-plan>**
Branch: 

# Context

# Approach

# Task list

# Log

# Review notes

If the user already has an active task, offer to fill in Working on: and # Context from their description now — and point them at /briefs-plan for the Approach.

5. Create BACKLOG.md

# Backlog

## Goal
[One sentence: what is this project building/solving?]

---

## Up next
[Max 3 items — what's actually happening now]
- [ ] Task

## Blocked
[Items waiting on external input — include reason and date blocked]

## Backlog
[Everything else that needs doing, in rough priority order]
- [ ] Task

# Done
[Flat list of completed items — no detail, that lives in PROGRESS.md]

6. Create PROGRESS.md

# Progress

[Completed tasks, newest first. Written by /briefs-done — one foldable entry
per task: `### Task name (YYYY-MM-DD)`, commit SHA, what/why, scope, key
decisions.]

7. Create NOTES.md

# Notes

[Key learnings, gotchas, and reference material]

8. If project-local, offer to gitignore

If the briefs folder is inside the project, check if .gitignore exists and offer to add the folder to it.

9. Confirm completion Show what was created and where it lives. Suggest /briefs-plan to plan the first task (or /briefs-work if there's already a plan to execute).

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Gives 0 of the 12 instructions most project setup skills give in 844 tokens

Counted across 999 of the 1,637 authors here whose files we hold, read 2026-08-07

  • Ask one question at a timein 29 of 999, across 28 files
  • Detect the package manager from lockfilesin 28 of 999, across 9 files
  • Present findings to the userin 26 of 999, across 5 files
  • Explore current repo statein 24 of 999, across 3 files
  • Update the agent skills block in place if it existsin 24 of 999, across 3 files
  • Install husky lint-staged and prettierin 23 of 999, across 4 files
  • Create the lintstagedrc filein 22 of 999, across 3 files
  • Commit all changed filesin 22 of 999, across 3 files
  • Run lint-staged to verify it worksin 22 of 999, across 3 files
  • Create the husky pre-commit filein 21 of 999, across 2 files
  • Create a prettierrc file if missingin 21 of 999, across 2 files
  • Initialize huskyin 21 of 999, across 2 files

Said here and by no other author read

  • Ask where to create the briefs folder
  • Present project root and custom path options
  • Suggest gitignoring local briefs folders
  • Save the absolute briefs path
  • Create CURRENT.md using the standard skeleton
  • Offer to populate CURRENT.md from existing context

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 327,069. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.