Skip to content
Merged

Dev #52

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
9f00045
chore: integrate SuperClaude framework v4.1.9
kvnloo Nov 23, 2025
78dcb5f
feat: add OpenCode migration configuration
kvnloo Nov 23, 2025
be21693
docs: add comprehensive project documentation and research
kvnloo Nov 23, 2025
da8edb7
docs: add SPARC and Swarm migration reports
kvnloo Nov 23, 2025
1952e45
feat: add PM migration automation scripts
kvnloo Nov 23, 2025
e424934
migrating claude config to opencode
kvnloo Nov 25, 2025
5f21aa6
Phase 1: Cleanup empty dirs, duplicates, off-topic content
kvnloo Nov 26, 2025
ff8b114
Phase 2: Archive old work + ELIMINATE research/ folder
kvnloo Nov 26, 2025
57cc8e7
feat: add dynamic command routing system with 214+ commands
kvnloo Nov 26, 2025
62e6970
docs: add research findings from framework analysis
kvnloo Nov 26, 2025
0cc7dfb
Phase 4.1: Consolidate CCPM docs (6→1)
kvnloo Nov 26, 2025
9d79a56
Phase 4.3-4.4: Statusline INDEX + Sphinx consolidation (4→1)
kvnloo Nov 26, 2025
c99fbba
Phase 4.5-4.6: Migrate research + OpenCode consolidation (5→1)
kvnloo Nov 26, 2025
013d3e8
Phase 4.7: Create active_research INDEX.md
kvnloo Nov 26, 2025
681ee31
Phase 5: Create navigation README files
kvnloo Nov 26, 2025
f1c6e6f
Phase 6: Create archive cleanup script
kvnloo Nov 26, 2025
1de7640
Merge pull request #47 from kvnloo/docs-consolidation
kvnloo Nov 26, 2025
1a75c60
fix: resolve CI link check and spelling errors
kvnloo Nov 26, 2025
49424b2
Merge remote-tracking branch 'origin/dev' into opencode
kvnloo Nov 26, 2025
f5bca91
fix: update workflow triggers from 'develop' to 'dev' branch
kvnloo Nov 26, 2025
5a352b5
fix: add ignore patterns for sites blocking link checker bots
kvnloo Nov 26, 2025
d55d09f
fix: add more ignore patterns for link check
kvnloo Nov 26, 2025
bad66c4
fix: handle link checker 'File not found' bug
kvnloo Nov 26, 2025
4d676ee
Merge pull request #46 from kvnloo/opencode
kvnloo Nov 26, 2025
12471ab
checkpoint before implementing smart routing
kvnloo Nov 28, 2025
8ac6173
feat: implement smart task router with adaptive learning
kvnloo Nov 28, 2025
1592fe2
docs: add router integration documentation for hooks
kvnloo Nov 28, 2025
feac760
Reorganize documentation to ace-3Dmerge v3.0 structure
kvnloo Nov 28, 2025
0419936
Phase 1: Remove migration artifacts and backup files
kvnloo Nov 29, 2025
e9a10d6
Phase 2: Fix documentation README cross-references
kvnloo Dec 2, 2025
f607eea
Phase 3: Remove unrelated content and restore accurate architecture
kvnloo Dec 2, 2025
62a87f2
Phase 4: Rebuild Sphinx documentation structure
kvnloo Dec 2, 2025
d355ca6
Merge remote-tracking branch 'origin/dev' into docs-consolidation
kvnloo Dec 2, 2025
0f66011
added custom commands and skills
kvnloo Dec 2, 2025
e2292bd
Merge pull request #48 from kvnloo/opencode
kvnloo Dec 2, 2025
e6ef54d
Update framework architecture with Claude Squad and Continuous Claude
kvnloo Dec 2, 2025
1b1268f
Convert presentation.md ASCII diagrams to Mermaid
kvnloo Dec 2, 2025
041c3d5
Merge branch 'dev' into docs-consolidation
kvnloo Dec 2, 2025
d0d42aa
Merge pull request #49 from kvnloo/docs-consolidation
kvnloo Dec 2, 2025
42e8650
Merge remote-tracking branch 'origin/main' into docs-consolidation
kvnloo Dec 2, 2025
8364e3f
Merge branch 'docs-consolidation' of https://github.com/kvnloo/evolve…
kvnloo Dec 2, 2025
be0c258
Merge pull request #51 from kvnloo/docs-consolidation
kvnloo Dec 2, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
56 changes: 56 additions & 0 deletions .claude/commands/add-to-todos.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
---
description: Add todo item to TO-DOS.md with context from conversation
argument-hint: <todo-description> (optional - infers from conversation if omitted)
allowed-tools:
- Read
- Edit
- Write
---

# Add Todo Item

## Context

- Current timestamp: !`date "+%Y-%m-%d %H:%M"`

## Instructions

1. Read TO-DOS.md in the working directory (create with Write tool if it doesn't exist)

2. Check for duplicates:
- Extract key concept/action from the new todo
- Search existing todos for similar titles or overlapping scope
- If found, ask user: "A similar todo already exists: [title]. Would you like to:\n\n1. Skip adding (keep existing)\n2. Replace existing with new version\n3. Add anyway as separate item\n\nReply with the number of your choice."
- Wait for user response before proceeding

3. Extract todo content:
- **With $ARGUMENTS**: Use as the focus/title for the todo and context heading
- **Without $ARGUMENTS**: Analyze recent conversation to extract:
- Specific problem or task discussed
- Relevant file paths that need attention
- Technical details (line numbers, error messages, conflicting specifications)
- Root cause if identified

4. Append new section to bottom of file:
- **Heading**: `## Brief Context Title - YYYY-MM-DD HH:MM` (3-8 word title, current timestamp)
- **Todo format**: `- **[Action verb] [Component]** - [Brief description]. **Problem:** [What's wrong/why needed]. **Files:** [Comma-separated paths with line numbers]. **Solution:** [Approach hints or constraints, if applicable].`
- **Required fields**: Problem and Files (with line numbers like `path/to/file.ts:123-145`)
- **Optional field**: Solution
- Make each section self-contained for future Claude to understand weeks later
- Use simple list items (not checkboxes) - todos are removed when work begins

5. Confirm and offer to continue with original work:
- Identify what the user was working on before `/add-to-todos` was called
- Confirm the todo was saved: "✓ Saved to todos."
- Ask if they want to continue with the original work: "Would you like to continue with [original task]?"
- Wait for user response

## Format Example

```markdown
## Add Todo Command Improvements - 2025-11-15 14:23

- **Add structured format to add-to-todos** - Standardize todo entries with Problem/Files/Solution pattern. **Problem:** Current todos lack consistent structure, making it hard for Claude to have enough context when revisiting tasks later. **Files:** `commands/add-to-todos.md:22-29`. **Solution:** Use inline bold labels with required Problem and Files fields, optional Solution field.

- **Create check-todos command** - Build companion command to list and select todos. **Problem:** Need workflow to review outstanding todos and load context for selected item. **Files:** `commands/check-todos.md` (new), `TO-DOS.md` (reads from). **Solution:** Parse markdown list, display numbered list, accept selection to load full context and remove item.
```
24 changes: 24 additions & 0 deletions .claude/commands/audit-skill.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
description: Audit skill for YAML compliance, pure XML structure, progressive disclosure, and best practices
argument-hint: <skill-path>
---

<objective>
Invoke the skill-auditor subagent to audit the skill at $ARGUMENTS for compliance with Agent Skills best practices.

This ensures skills follow proper structure (pure XML, required tags, progressive disclosure) and effectiveness patterns.
</objective>

<process>
1. Invoke skill-auditor subagent
2. Pass skill path: $ARGUMENTS
3. Subagent will read updated best practices (including pure XML structure requirements)
4. Subagent evaluates XML structure quality, required/conditional tags, anti-patterns
5. Review detailed findings with file:line locations, compliance scores, and recommendations
</process>

<success_criteria>
- Subagent invoked successfully
- Arguments passed correctly to subagent
- Audit includes XML structure evaluation
</success_criteria>
22 changes: 22 additions & 0 deletions .claude/commands/audit-slash-command.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
description: Audit slash command file for YAML, arguments, dynamic context, tool restrictions, and content quality
argument-hint: <command-path>
---

<objective>
Invoke the slash-command-auditor subagent to audit the slash command at $ARGUMENTS for compliance with best practices.

This ensures commands follow security, clarity, and effectiveness standards.
</objective>

<process>
1. Invoke slash-command-auditor subagent
2. Pass command path: $ARGUMENTS
3. Subagent will read best practices and evaluate the command
4. Review detailed findings with file:line locations, compliance scores, and recommendations
</process>

<success_criteria>
- Subagent invoked successfully
- Arguments passed correctly to subagent
</success_criteria>
22 changes: 22 additions & 0 deletions .claude/commands/audit-subagent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
description: Audit subagent configuration for role definition, prompt quality, tool selection, XML structure compliance, and effectiveness
argument-hint: <subagent-path>
---

<objective>
Invoke the subagent-auditor subagent to audit the subagent at $ARGUMENTS for compliance with best practices, including pure XML structure standards.

This ensures subagents follow proper structure, configuration, pure XML formatting, and implementation patterns.
</objective>

<process>
1. Invoke subagent-auditor subagent
2. Pass subagent path: $ARGUMENTS
3. Subagent will read best practices and evaluate the configuration
4. Review detailed findings with file:line locations, compliance scores, and recommendations
</process>

<success_criteria>
- Subagent invoked successfully
- Arguments passed correctly to subagent
</success_criteria>
5 changes: 5 additions & 0 deletions .claude/commands/automation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Commands for automation operations in Claude Flow.

## Available Commands

- [ai-pipeline](./ai-pipeline.md) - **NEW**: Autonomous AI/ML research-to-implementation pipeline
- [auto-agent](./auto-agent.md)
- [smart-spawn](./smart-spawn.md)
- [workflow-select](./workflow-select.md)
- [research-plan-only](./research-plan-only.md)
- [session-memory](./session-memory.md)
- [self-healing](./self-healing.md)
- [smart-agents](./smart-agents.md)
Loading
Loading