Revert "feat: add orchestration workflows and harness skills"

This reverts commit cb43402d7d.
This commit is contained in:
Affaan Mustafa
2026-03-12 09:26:12 -07:00
parent cb43402d7d
commit bfc73866c9
46 changed files with 80 additions and 5618 deletions

View File

@@ -85,9 +85,6 @@ function parseSessionMetadata(content) {
date: null,
started: null,
lastUpdated: null,
project: null,
branch: null,
worktree: null,
completed: [],
inProgress: [],
notes: '',
@@ -120,22 +117,6 @@ function parseSessionMetadata(content) {
metadata.lastUpdated = updatedMatch[1];
}
// Extract control-plane metadata
const projectMatch = content.match(/\*\*Project:\*\*\s*(.+)$/m);
if (projectMatch) {
metadata.project = projectMatch[1].trim();
}
const branchMatch = content.match(/\*\*Branch:\*\*\s*(.+)$/m);
if (branchMatch) {
metadata.branch = branchMatch[1].trim();
}
const worktreeMatch = content.match(/\*\*Worktree:\*\*\s*(.+)$/m);
if (worktreeMatch) {
metadata.worktree = worktreeMatch[1].trim();
}
// Extract completed items
const completedSection = content.match(/### Completed\s*\n([\s\S]*?)(?=###|\n\n|$)/);
if (completedSection) {