feat!: namespaces, lint mode, and markdown-aware task parsing#209
Draft
swedishborgie wants to merge 1 commit intokitproj:mainfrom
Draft
feat!: namespaces, lint mode, and markdown-aware task parsing#209swedishborgie wants to merge 1 commit intokitproj:mainfrom
swedishborgie wants to merge 1 commit intokitproj:mainfrom
Conversation
Add multi-team isolation via namespaces, dry-run lint validation, and goldmark-based parsing so slash commands inside code blocks are ignored. Namespaces: - Support namespace/taskname syntax (e.g. myteam/fix-bug) for shared .agents/ - Tasks, rules, commands, and skills under .agents/namespaces/<team>/ - Namespace assets take precedence over global; rules and skills merge - Add docs/how-to/use-namespaces.md and namespace selector in rule frontmatter Lint mode: - Run context assembly without bootstrap or shell execution - Track loaded files and collect structural errors (parse, missing commands, skill validation, selector mismatches) in LintResult - Add WithLint() option, ListTasks(), and include_unmatched task frontmatter - Parse errors include line/column; selector/command errors use task path Task parser: - Integrate goldmark Extension for AST-based code range detection - Slash commands in fenced, indented, and HTML code blocks no longer detected - ParseMarkdownFile populates Markdown.Task; re-parse only on content change Infrastructure: - Enable golangci-lint with comprehensive linter configuration - Fix lint issues across codebase (revive, gosec, wrapcheck, etc.) - Add t.Parallel() to tests; expand test coverage - Documentation corrections and new how-to guides
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add multi-team isolation via namespaces, dry-run lint validation, and goldmark-based parsing so slash commands inside code blocks are ignored.
Namespaces:
Lint mode:
Task parser:
Infrastructure:
Still a draft, have to work out a few additional details.