Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"name": "cc-loop",
"source": "./plugins/cc-loop",
"description": "Claude Code lifecycle hooks for minimum-duration, rounds-based, and goal-confirmed agent work.",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

Description inconsistency with plugin manifest.

The description is missing the word "loop" compared to plugins/cc-loop/.claude-plugin/plugin.json line 4. For consistency, both descriptions should match.

📝 Proposed fix to align descriptions
-      "description": "Claude Code lifecycle hooks for minimum-duration, rounds-based, and goal-confirmed agent work.",
+      "description": "Claude Code lifecycle loop hooks for minimum-duration, rounds-based, and goal-confirmed agent work.",
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
"description": "Claude Code lifecycle hooks for minimum-duration, rounds-based, and goal-confirmed agent work.",
"description": "Claude Code lifecycle loop hooks for minimum-duration, rounds-based, and goal-confirmed agent work.",
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.claude-plugin/marketplace.json at line 11, The "description" string in the
marketplace manifest is missing the word "loop" and should exactly match the
cc-loop plugin's description; update the "description" value in
.claude-plugin/marketplace.json to include "loop" so it reads "Claude Code loop
lifecycle hooks for minimum-duration, rounds-based, and goal-confirmed agent
work." Ensure you modify the "description" JSON property (key: "description") to
match the cc-loop plugin's manifest text exactly.

"version": "0.1.1",
"version": "0.1.2",
"category": "Developer Tools",
"tags": [
"claude-code",
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## 0.1.2 - 2026-05-10

### Bug Fixes

- Handle Claude structured goal verdicts
## 0.1.1 - 2026-05-10

### Bug Fixes
Expand All @@ -14,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Features

- Initial Claude Code loop
[0.1.2]: https://github.com///compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com///compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com///releases/tag/v0.1.0
---
Expand Down
4 changes: 2 additions & 2 deletions RELEASE_BODY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## 0.1.1 - 2026-05-10
## 0.1.2 - 2026-05-10

### Bug Fixes

- Avoid duplicate Claude hook load
- Handle Claude structured goal verdicts
14 changes: 7 additions & 7 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.1.2 - 2026-05-10

### Bug Fixes

- Handle Claude structured goal verdicts

## 0.1.1 - 2026-05-10

### Bug Fixes
Expand All @@ -20,10 +26,4 @@
- Fix readme
### Features

- Scoped config

## 0.1.2 - 2026-05-02

### Bug Fixes

- Release process
- Scoped config
2 changes: 1 addition & 1 deletion plugins/cc-loop/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cc-loop",
"version": "0.1.1",
"version": "0.1.2",
"description": "Claude Code lifecycle loop hooks for minimum-duration, rounds-based, and goal-confirmed agent work.",
"author": {
"name": "Pedro Nauck",
Expand Down
Loading