Skip to content

Releases: livevil7/creeta-lens

v3.0.0 — Task Execution Engine + Documentation Management

11 Apr 14:30

Choose a tag to compare

Added

  • /c v3.0 — Sequential task execution engine (6-phase: Leader → Approval → Worker → Supervisor → QA → Report)
  • /cc v3.0 — Parallel task execution engine (same architecture, multiple workers)
  • /cp v3.0 — Documentation management engine (auto-detects: plan/done/organize)
  • Model assignment — haiku/sonnet/opus assigned by task difficulty
  • Monitor agent — 5-minute progress reports during execution
  • docs/ structure — tasks/, history/, rules/ with folder-as-status convention
  • TodoWrite integration — Real-time progress tracking
  • Worker skill reporting — Shows assigned skills before execution

Changed

  • /c rewritten from 82-line navigator to 600-line execution engine
  • /cc rewritten from 368-line orchestration to 627-line unified engine
  • /cp rewritten from 208-line planner to 378-line documentation manager
  • CLAUDE.md slimmed from 213 to 128 lines

Removed

  • Old /c navigator mode (inventory still available with no args)
  • .lens/results/ path (replaced by docs/)
  • CreetaDocs/ folder (replaced by docs/tasks/)

Released: 2026-04-11

v1.7.1 — Quality & Stability Fixes

02 Mar 05:05

Choose a tag to compare

Fixed

  • Storage path consistency — All docs unified to docs/ (was mixed .creet/plans/ and docs/)
  • cancelled status — Added to validStatuses with cancelledAt timestamp
  • Regex safetyupdatePlanStatus() rewrites frontmatter safely
  • 8-language headers — Added ES, FR, DE, IT to generatePlanContent()
  • YAML parser — null/boolean/integer type conversion in frontmatter
  • JSON safetysavePlanState() gracefully resets on corruption
  • Exports list — CLAUDE.md updated from 5 to 15 functions

Changed

  • /cp save location simplified to 2-tier priority (planDir → docs/)
  • DOCUMENT-CONVENTIONS.md updated with correct paths and slug rules
  • README.md added saveSynthesisResults and resultsDir config options

Released: 2026-03-02

v1.7.0 — /cp Plan-First Execution

02 Mar 05:04

Choose a tag to compare

Added

  • /cp — Creet Plan: Plan-first execution engine. Generates work plan documents before running skills
    • 7-phase workflow: Scan → Analyze → Generate Plan → Approve → Execute → Post-Exec Update
    • Plans saved as YYYY-MM-DD-slug.md in project docs/
    • Unicode slug support (Korean, Japanese, Chinese characters)
    • User approval via AskUserQuestion (Approve / Modify / Cancel)
  • Plan Manager modulelib/plan-manager.js with 15 exported functions
  • planDir config — Custom plan directory override
  • defaultPlanLanguage config — Force plan document language

Changed

  • Session startup initializes plans directory
  • All skills cross-reference /cp

Released: 2026-02-28

v1.6.0 — Agent Dashboard & Hook System

02 Mar 05:04

Choose a tag to compare

Added

  • Agent Dashboard — Real-time sub-agent lifecycle tracking (.creet/agent-dashboard.json)
  • PreToolUse hook — Registers Task agents as "running" before execution
  • PostToolUse hook — Marks Task agents "done"/"error", records duration
  • Stop hook — Finalizes session, marks orphaned agents as error
  • Slash command priority override/skill-name invokes immediately

Changed

  • Hook system expanded from 2 to 5 hooks
  • Session startup now initializes agent dashboard
  • Documentation rewritten following standards guide

Released: 2026-02-28

v1.5.0 — Cross-Platform Compatibility

02 Mar 05:04

Choose a tag to compare

Fixed

  • Cross-platform stdinUserPromptSubmit hook now uses fs.readFileSync(0) instead of Unix-only /dev/stdin
  • Dynamic plugin cache path — 4-level env var resolution: CLAUDE_PLUGIN_CACHE_DIRCLAUDE_PLUGIN_ROOTCLAUDE_HOME/plugins/cache~/.claude/plugins/cache
  • Stable memory path — Always writes to ~/.claude/creet/.creet-memory.json (was process.cwd() dependent)
  • Version string sync — All files unified to v1.5.0

Released: 2026-02-25

v1.4.0 — /cc Parallel Multi-Agent Engine

02 Mar 05:04

Choose a tag to compare

Added

  • /cc — Creet Multi: Parallel multi-agent execution. Finds ALL relevant skills, runs them simultaneously as Task agents, synthesizes results
    • N ≤ 5: auto-executes
    • N > 5: confirms via AskUserQuestion
    • Synthesis block: agreements, conflicts, next steps
    • Falls back to /c if only 0-1 skills match

Changed

  • Session start Quick Commands updated for /cc
  • /c description updated to note /cc as parallel companion

Removed

  • skills/design-council/ moved to README as pattern example

Released: 2026-02-24

v1.3.0 - Zero Hardcoded Dependencies

21 Feb 17:44

Choose a tag to compare

Creet v1.3.0

Skill navigator for Claude Code — scans all installed plugins (Skills, MCP tools, LSP servers), recommends the best match for your task in 8 languages, and executes it.

What's New

  • Zero hardcoded dependencies — Keyword matcher no longer contains hardcoded skill names. All keyword-to-skill mappings are built dynamically from scanner results at session start.
  • Dynamic keyword mapkeyword-matcher.js completely rewritten. Uses each skill's triggers field from scanner output instead of a static map.
  • Scan cache — Session start saves scan results to .creet-cache.json for per-message matching without re-scanning.
  • README genericized — All plugin-specific examples replaced with generic placeholders. Creet is now fully plugin-agnostic.

Installation

git clone https://github.com/Creeta-creet/creet.git
claude --plugin-dir ./creet

Then use /creet:c or copy the skill to ~/.claude/commands/c.md for a shorter /c command.

Full Changelog

See CHANGELOG.md