Skip to content

Releases: GiustoPiedimonte/agentic-engineering-marketplace

v0.3.3

Choose a tag to compare

@GiustoPiedimonte GiustoPiedimonte released this 02 Jul 10:18

Reliability + distribution polish.

Fixed

  • Stop hook no longer loops with dynamic/background workflows. The old
    prompt-type hook re-invoked the model on every Stop event — and background
    workflow completions fire many of those, producing a wall of "Stopping…". The
    hook is now advisory: it prints a one-line reminder when a turn leaves
    uncommitted changes, but exits 0 always — never blocks, never re-invokes.
    Verification discipline stays in the /ship and executor prompts.
    (agentic-engineering 0.2.2)

Added

  • README "Staying updated" section — third-party marketplaces don't
    auto-update by default; documents enabling per-marketplace auto-update (hands-off
    updates + a /reload-plugins notification) and the manual fallback.
  • CHANGELOG.md (Keep a Changelog).
  • github-keeper /opensource playbook now covers documenting a repo's
    update/distribution story. (github-keeper 0.3.3)

Updating an existing install

The looping hook is still active wherever the plugin is already installed. To pick
up the fix:
```
/plugin marketplace update giusto-agentic
/plugin update agentic-engineering@giusto-agentic
```
then `/reload-plugins` (or restart).

Full changelog: v0.3.2...v0.3.3

v0.3.2

Choose a tag to compare

@GiustoPiedimonte GiustoPiedimonte released this 28 Jun 12:03

Quality and honesty pass on both plugins, driven by an adversarial self-review.

github-keeper 0.3.2

  • /readme now sweeps every README in the repo by tierlanding (root,
    full hero treatment) vs component reference (plugins/*/README.md, docs;
    clean, no banner). A plain sub-page reads as "passed for its tier," not a miss.
  • Badge honesty, level 2 — a new stable vs volatile rule in the badge
    matrix: dynamic badges auto-update, but last-commit auto-advertises dormancy
    and stars undersell at low counts. The gate is now "is it true and does it
    still help six months from now?"

agentic-engineering 0.2.1

  • Quieter, artifact-neutral Stop hook. Was unconditional and hard-coded
    typecheck/build/test (noise on conversational turns and non-code repos). Now a
    command hook: silent unless the tree has uncommitted changes, loop-guarded, and
    it references this project's own checks instead of assuming ones it doesn't
    have.

Repo

  • Honest provenance framing ("a real agentic-engineering practice," not "mature
    production setup") + an explicit maturity note: validated and dogfooded, not yet
    battle-tested.
  • README badge row trimmed to the stable, meaningful set (Claude Code · CI ·
    Release · License).

Full changelog: v0.3.0...v0.3.2

v0.3.0

Choose a tag to compare

@GiustoPiedimonte GiustoPiedimonte released this 28 Jun 10:46

Second release. The marketplace now hosts two plugins, and is itself a
well-made, CI-gated, community-complete public repo.

✨ New: github-keeper plugin

A new plugin to keep a public GitHub repo well-made and honest — two skills:

  • /readme — audit and elevate a README. Rebuilds a thin/generic one into
    a polished, repo-specific README: an SVG banner, honest live badges, custom chips
    (a true fact linked to its proof), cognitive-funnel structure, a quickstart from
    real code. Preserves an existing voice; gates big rewrites on confirmation.
  • /opensource — make a repo public-ready: community-health files (Code of
    Conduct, Contributing, Security, issue/PR templates), an honest CI gate, and
    the right repo settings. Never flips a repo public or changes settings without
    explicit confirmation; the CoC/security contact is the human's call.

Honesty gate throughout: never show a signal the repo can't back.

🛠 This repo, hardened

  • High-quality README: clickable, honest, live badges; banner; TOC; GitHub
    callouts; "why this exists"; Quickstart.
  • Open-source community health at 100%: Code of Conduct, Contributing,
    Security policy, issue/PR templates.
  • CI: validate.yml runs deterministic checks (manifests, plugin structure,
    README links/H1/fences) on every push and PR.
  • Private vulnerability reporting enabled; tidy merge settings.

📦 agentic-engineering — unchanged at 0.2.0

The spec-driven /pitch → /adr → /ship → /measure → /eval workflow with four
subagents and verification hooks.

Install

```
/plugin marketplace add GiustoPiedimonte/agentic-engineering-marketplace
/plugin install agentic-engineering@giusto-agentic
/plugin install github-keeper@giusto-agentic
```

Full changelog: v0.2.0...v0.3.0

v0.2.0

Choose a tag to compare

@GiustoPiedimonte GiustoPiedimonte released this 28 Jun 10:06

First public release of the agentic-engineering Claude Code plugin.

Install
```
/plugin marketplace add GiustoPiedimonte/agentic-engineering-marketplace
/plugin install agentic-engineering@giusto-agentic
```

Workflow

Spec-driven shape → decide → execute → measure → eval:

  • `/pitch` — shape a feature into a Shape Up pitch before any code
  • `/adr` — record a decision (append-only), with dark-launch `Gate`/`Flip-criteria`
  • `/ship` — execute a closed-scope cycle: pre-spawn filter, doc-bundle, PR format, adversarial review, dark-launch flip
  • `/measure` — read-only, data-backed flip/keep/cut verdict
  • `/eval` — error analysis from real failures + transition-failure matrices

Agents

`executor` · `researcher` · `reviewer` · `measurer` — parallelize readers, serialize writers.

Hooks

Auto-format on edit (TS/Py) and a verification gate before ending a code turn.