Skip to content

Commit 8b147c0

Browse files
Merge pull request #179 from cognitx-leyton/dev
fix: filter out-of-scope issues before filing
2 parents 6b76e9b + 665db2e commit 8b147c0

1 file changed

Lines changed: 20 additions & 1 deletion

File tree

.archon/workflows/dev-pipeline.yaml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,26 @@ nodes:
794794
795795
## Instructions
796796
797-
For each discovery that is OUT OF SCOPE for the current work:
797+
### What to file
798+
Only file issues for things that are:
799+
- Actual bugs in existing code
800+
- Concrete enhancements that fit codegraph's scope
801+
- Technical debt that makes the code harder to maintain
802+
803+
### What NOT to file
804+
Do NOT create issues for:
805+
- Features that require LLM/AI calls (codegraph is deterministic — no-LLM)
806+
- Features outside codegraph's scope (web UIs, dashboards, real-time watchers)
807+
- Vague ideas without a concrete implementation path
808+
- Things already tracked in existing open issues
809+
810+
Check existing issues first:
811+
```bash
812+
gh issue list --state open --json number,title --jq '.[] | "#\(.number) \(.title)"' | head -30
813+
```
814+
815+
### Filing
816+
For each valid discovery:
798817
799818
```bash
800819
gh issue create --title "<type>: <title>" --body "$(cat <<'EOF'

0 commit comments

Comments
 (0)