Skip to content
Closed
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
7 changes: 5 additions & 2 deletions .agents/plugins/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,12 @@
{
"name": "flow",
"description": "Unified toolkit for Context-Driven Development with spec-first planning, TDD workflow, and Beads integration",
"version": "0.20.2",
"version": "0.20.3",
"source": { "source": "local", "path": "./plugins/flow" },
"policy": { "installation": "AVAILABLE" },
"policy": {
"installation": "AVAILABLE",
"authentication": "ON_INSTALL"
},
"category": "Development",
"author": { "name": "cofin" }
}
Expand Down
1 change: 1 addition & 0 deletions .agents/plugins/plugins/flow/.codex-plugin
23 changes: 0 additions & 23 deletions .agents/plugins/plugins/flow/.codex-plugin/plugin.json

This file was deleted.

1 change: 1 addition & 0 deletions .agents/plugins/plugins/flow/commands
1 change: 1 addition & 0 deletions .agents/plugins/plugins/flow/skills
2 changes: 1 addition & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{
"name": "flow",
"description": "Unified toolkit for Context-Driven Development with spec-first planning, TDD workflow, and Beads integration",
"version": "0.20.2",
"version": "0.20.3",
"source": "./",
"author": {
"name": "cofin"
Expand Down
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "flow",
"description": "Unified toolkit for Context-Driven Development with spec-first planning, TDD workflow, and Beads integration",
"version": "0.20.2",
"version": "0.20.3",
"author": {
"name": "cofin"
},
Expand Down
2 changes: 1 addition & 1 deletion .codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flow",
"version": "0.20.2",
"version": "0.20.3",
"description": "Unified toolkit for Context-Driven Development with spec-first planning, TDD workflow, and Beads integration",
"author": { "name": "cofin" },
"homepage": "https://github.com/cofin/flow",
Expand Down
2 changes: 1 addition & 1 deletion gemini-extension.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "flow",
"description": "Unified toolkit for Context-Driven Development with spec-first planning, TDD workflow, and Beads integration",
"version": "0.20.2",
"version": "0.20.3",
"contextFileName": "GEMINI.md",
"plan": {
"directory": ".agents"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flow",
"version": "0.20.2",
"version": "0.20.3",
"description": "Unified toolkit for Context-Driven Development",
"type": "module",
"main": ".opencode/plugins/flow.js",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "flow"
version = "0.20.2"
version = "0.20.3"
description = "Unified toolkit for Context-Driven Development"
authors = [
{ name = "cofin" },
Expand All @@ -26,7 +26,7 @@ dev = [
allow_dirty = true
commit = false
commit_args = "--no-verify"
current_version = "0.20.2"
current_version = "0.20.3"
ignore_missing_files = false
ignore_missing_version = false
message = "chore(release): bump to v{new_version}"
Expand Down
2 changes: 1 addition & 1 deletion tools/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ show_banner() {
echo -e "${CYAN}"
echo "╔══════════════════════════════════════════════════════════════╗"
echo "║ Flow Framework - Plugin Installer ║"
echo "║ Version 0.20.2 ║"
echo "║ Version 0.20.3 ║"
echo "╚══════════════════════════════════════════════════════════════╝"
echo -e "${NC}"

Expand Down
12 changes: 12 additions & 0 deletions tools/validate-codex-manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,18 @@ def validate_marketplace(file_path: str | Path):
if '..' in path:
print(f" ERROR [plugin {name}]: path '{path}' must not contain '..'")
errors += 1

# 4. Path must exist relative to marketplace file and contain a plugin manifest
marketplace_dir = file_path.parent
resolved_path = (marketplace_dir / normalized).resolve()
if not resolved_path.is_dir():
print(f" ERROR [plugin {name}]: path '{path}' does not exist or is not a directory")
errors += 1
else:
plugin_manifest = resolved_path / ".codex-plugin" / "plugin.json"
if not plugin_manifest.is_file():
print(f" ERROR [plugin {name}]: path '{path}' is missing .codex-plugin/plugin.json")
errors += 1

return errors == 0

Expand Down
Loading