Skip to content

feat: implement SDD adoption - #230

Open
mrbrandao wants to merge 1 commit into
LobsterTrap:mainfrom
mrbrandao:feat/sdd-implementation
Open

feat: implement SDD adoption#230
mrbrandao wants to merge 1 commit into
LobsterTrap:mainfrom
mrbrandao:feat/sdd-implementation

Conversation

@mrbrandao

@mrbrandao mrbrandao commented Aug 12, 2026

Copy link
Copy Markdown
Collaborator

Summary

  • Implements the SDD adoption ADR (PR docs: propose spec-driven development ADR #229)
  • Rewrites AGENTS.md as a lean navigation guide with topic index
  • Updates constitution to v2.0.0 with SDD, Go standards, and commit conventions
  • Fills openspec/config.yaml with LoLa project context
  • Adds SDD section to CONTRIBUTING.md
  • Adds Spec/ADR Reference field to PR template
  • Gitignores .opencode/ (optional contributor tooling)

Spec / ADR Reference

ADR: docs/adr/spec-driven-development.md (merged in PR #229)

Related Issues

Follow-on to #229

Test Plan

  • Read AGENTS.md and confirm topic guide points to correct files
  • Read .specify/memory/constitution.md and confirm v2.0.0 changes
  • Read openspec/config.yaml and confirm LoLa context is accurate
  • Confirm .gitignore tracks .specify/memory/ and ignores .opencode/
  • Confirm CONTRIBUTING.md SDD section is clear
  • Confirm PR template has Spec/ADR Reference field

Checklist

  • Tests pass (pytest / go test -race ./...) — N/A: docs only
  • Linting passes (ruff check src tests / golangci-lint) — N/A: docs only
  • Type checking passes (basedpyright src) — N/A: docs only
  • Commit subjects ≤ 50 chars, body wrapped at 72

AI Disclosure

AI-assisted with Claude via OpenCode. All file content reviewed
and approved by maintainer before commit.

Summary by CodeRabbit

  • Documentation

    • Added project-wide constitution and governance standards.
    • Documented spec-driven development, ADRs, coding practices, testing, and contribution workflows.
    • Updated repository guidance with architecture, commands, modules, and review expectations.
    • Added configuration for specifications, proposals, tasks, and project conventions.
  • Chores

    • Refined pull request checklist guidance, including testing, linting, typing, and commit-message requirements.
    • Updated ignored files for specification and contributor tooling directories.

Implements ADR: docs/adr/spec-driven-development.md

Changes:
- AGENTS.md: rewrite as navigation guide with topic index
  (FullSend pattern — lean entry point for all AI tools)
- .specify/memory/constitution.md: bump to v2.0.0, add SDD
  principle, Go code style, commit message standards,
  updated file organization and quality gates
- openspec/config.yaml: fill in LoLa project context and
  conventions for AI-generated change proposals
- .gitignore: add .opencode/ (uf optional, contributor-local),
  track .specify/memory/ (constitution must be committed)
- CONTRIBUTING.md: add SDD section (when to write ADR/spec)
- .github/PULL_REQUEST_TEMPLATE.md: add Spec/ADR Reference
  field, update checklist for Go + commit standards
@mrbrandao
mrbrandao requested a review from SecKatie August 12, 2026 20:53
@coderabbitai

coderabbitai Bot commented Aug 12, 2026

Copy link
Copy Markdown

Review Change Stack

📝 Walkthrough

Walkthrough

This PR adds a project constitution, spec-driven development guidance, OpenSpec configuration, updated agent instructions, pull request checklist changes, and ignore rules for contributor tooling.

Changes

Spec-driven development governance

Layer / File(s) Summary
Project constitution
.specify/memory/constitution.md
Defines architecture, development, quality, governance, and amendment standards.
Contributor workflow
CONTRIBUTING.md, openspec/config.yaml
Documents ADR and specification requirements and configures OpenSpec conventions.
Repository guidance and templates
AGENTS.md, .github/PULL_REQUEST_TEMPLATE.md, .gitignore
Updates repository guidance, pull request checks, and ignore rules for spec-driven tooling.

Estimated code review effort: 1 (Trivial) | ~5 minutes

Possibly related PRs

Suggested labels: documentation, enhancement

Suggested reviewers: seckatie

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and concisely describes the pull request's main change: adopting spec-driven development across project guidance and configuration.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 1208c1a836

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment on lines +29 to +30
- [ ] Tests pass (`pytest` / `go test -race ./...`)
- [ ] Linting passes (`ruff check src tests` / `golangci-lint`)

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Use the real Go lint command

For Go PRs, this checklist lets authors tick the lint gate with bare golangci-lint; I checked golangci-lint --help, and only the run subcommand is described as running the linters, while the bare command just prints help and exits 0. It also omits the required go vet ./..., so Go changes can satisfy the template without running two required checks; please mirror golangci-lint run and go vet ./....

AGENTS.md reference: AGENTS.md:L15-L15

Useful? React with 👍 / 👎.

- [ ] Type checking passes (`ty check`)
- [ ] Tests pass (`pytest` / `go test -race ./...`)
- [ ] Linting passes (`ruff check src tests` / `golangci-lint`)
- [ ] Type checking passes (`basedpyright src`)

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Keep typecheck instructions aligned with CI

For Python PRs, this switches the checklist to basedpyright src, but the committed dev dependencies still include ty/mypy and not basedpyright, and CI still runs uv run ty check plus uv run mypy src. Contributors following the template after uv sync --group dev either hit a missing command or skip the checks CI actually enforces; add basedpyright to the toolchain/CI or keep the checklist on the existing checks.

Useful? React with 👍 / 👎.

Comment thread openspec/config.yaml
once, install them to Claude Code, Cursor, Gemini CLI, OpenCode,
and more.

Tech stack: Python 3.13+ (src/lola/) and Go 1.24+ (cmd/, internal/)

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Match the Go version in go.mod

The OpenSpec context says Go 1.24+, but go.mod declares go 1.26.3. Any AI/tooling or contributor using this SDD context to select a 1.24/1.25 toolchain will fail before building or testing, so update this line to the module's actual minimum Go version.

Useful? React with 👍 / 👎.

Comment thread AGENTS.md
| cursor | `.cursor/skills/` | `.cursor/commands/` | `.cursor/agents/` |
| gemini-cli | `GEMINI.md` | `.gemini/commands/` | N/A |
| opencode | `AGENTS.md` | `.opencode/commands/` | `.opencode/agents/` |
| copilot | `.github/skills/` | `.github/prompts/` | `.github/agents/` |

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge List the actual Copilot assistant keys

This row now documents a copilot assistant, but the CLI's -a/--assistant choices come from TARGETS, which contains copilot-cli and copilot-vscode but no copilot. Anyone following AGENTS.md and running lola install ... -a copilot gets rejected, so list the actual assistant keys rather than the collapsed label.

Useful? React with 👍 / 👎.

@SecKatie SecKatie left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just a few nitpicks. You can take them or leave them.

Comment thread openspec/config.yaml
- Always include a "Non-goals" section
- Reference the relevant ADR if one exists
tasks:
- Break tasks into chunks of max 2 hours

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Models are very bad at estimating time to completion. Should we have another metric?

Comment thread AGENTS.md
3. **Updates**: `lola update` regenerates assistant files from source modules
4. **Marketplace Registration**: `lola market add <name> <url>` fetches marketplace catalogs to `~/.lola/market/` (reference) and `~/.lola/market/cache/` (full catalog)
5. **Module Discovery**: `lola search <query>` searches both the local module registry and enabled marketplace caches (use `--mod` or `--market` to scope); `lola mod search <query>` is a deprecated alias for `lola search <query> --mod`; `lola install <module>` auto-adds from marketplace if not in registry
| Task | Read this |

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's include the PR template in here.

Comment thread CONTRIBUTING.md
@@ -141,6 +141,30 @@ PR updates automatically!
**Note**: For large changes, open an issue first to discuss your
approach.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we also say something about the PR template?

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 4

🧹 Nitpick comments (3)
.specify/memory/constitution.md (3)

166-167: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Add the blank line required before the Markdown table.

The static analysis report flags MD058 at Line 167. Add a blank line
between ### Violations Requiring Justification and the table.

[details]
[summary]Proposed Markdown fix[/summary]

 ### Violations Requiring Justification
+
 | Pattern | When Allowed | Justification Required |

[/details]

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.specify/memory/constitution.md around lines 166 - 167, Insert a blank line
between the “Violations Requiring Justification” heading and the following
Markdown table.

Source: Linters/SAST tools


110-110: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Add language identifiers to both fenced code blocks.

The static analysis report flags MD040 for the file-tree fences. Use a
text language identifier on each opening fence.

  • .specify/memory/constitution.md#L110-L110: add the text language identifier.
  • AGENTS.md#L101-L101: add the text language identifier.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.specify/memory/constitution.md at line 110, Add the text language
identifier to the opening file-tree fenced code block in
.specify/memory/constitution.md at lines 110-110 and to the corresponding
opening fence in AGENTS.md at lines 101-101; leave the contents of both blocks
unchanged.

Source: Linters/SAST tools


150-153: 🗄️ Data Integrity & Integration | 🔵 Trivial | ⚡ Quick win

Define one coverage scope across the governance documents.

As per coding guidelines, keep coverage above 80 percent. The supplied
coverage configuration measures src/lola, but the policy text says
“changed files”. This PR changes only documentation and configuration
files. Define a docs/config-only exception or use “changed source files”
in all three locations.

  • .specify/memory/constitution.md#L150-L153: define the source-file scope or docs/config-only exception.
  • openspec/config.yaml#L18-L18: mirror the agreed coverage wording.
  • AGENTS.md#L17-L17: mirror the agreed coverage wording.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.specify/memory/constitution.md around lines 150 - 153, Define a single
coverage scope using “changed source files” or an explicit docs/config-only
exception in the Pre-Merge requirement of .specify/memory/constitution.md (lines
150-153), then mirror the same wording in openspec/config.yaml (line 18) and
AGENTS.md (line 17).

Source: Coding guidelines

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In @.github/PULL_REQUEST_TEMPLATE.md:
- Around line 29-32: Update the pull request checklist by adding conditional
entries for go vet ./..., coverage above 80%, and e2e BDD tests when introducing
new CLI commands; also provide an explicit N/A option for docs-only or
configuration-only changes, including the existing test, lint, type-check, and
commit checks.

In @.specify/memory/constitution.md:
- Around line 177-188: Use consistent approval wording in the “Constitution
Authority” and “Amendment Process” sections: replace the differing “both
maintainers” and “unanimous maintainer approval” phrases with one shared rule,
such as approval from all current maintainers.
- Around line 24-31: Update the “Type Safety & Modern Python” requirements in
the constitution and the pre-commit gate documentation to match the checks
actually enforced by .pre-commit-config.yaml: either add a basedpyright hook and
hooks for every listed gate, or remove unsupported gate claims and document the
existing ty check and mypy checks instead.

In `@AGENTS.md`:
- Line 86: Update the target-definition reference on line 86 of AGENTS.md from
the nonexistent src/lola/targets.py file to the existing src/lola/targets/
directory, preserving the surrounding description.

---

Nitpick comments:
In @.specify/memory/constitution.md:
- Around line 166-167: Insert a blank line between the “Violations Requiring
Justification” heading and the following Markdown table.
- Line 110: Add the text language identifier to the opening file-tree fenced
code block in .specify/memory/constitution.md at lines 110-110 and to the
corresponding opening fence in AGENTS.md at lines 101-101; leave the contents of
both blocks unchanged.
- Around line 150-153: Define a single coverage scope using “changed source
files” or an explicit docs/config-only exception in the Pre-Merge requirement of
.specify/memory/constitution.md (lines 150-153), then mirror the same wording in
openspec/config.yaml (line 18) and AGENTS.md (line 17).
🪄 Autofix

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 50ae5cd0-2a34-4a90-9750-0f1ff78c389d

📥 Commits

Reviewing files that changed from the base of the PR and between 616a1bb and 1208c1a.

📒 Files selected for processing (6)
  • .github/PULL_REQUEST_TEMPLATE.md
  • .gitignore
  • .specify/memory/constitution.md
  • AGENTS.md
  • CONTRIBUTING.md
  • openspec/config.yaml

Comment on lines +29 to +32
- [ ] Tests pass (`pytest` / `go test -race ./...`)
- [ ] Linting passes (`ruff check src tests` / `golangci-lint`)
- [ ] Type checking passes (`basedpyright src`)
- [ ] Commit subjects ≤ 50 chars, body wrapped at 72

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win

Complete and condition the required checklist.

The constitution requires go vet ./..., coverage above 80 percent, and
e2e BDD tests for new CLI commands on Lines 145, 152, and 154. The changed
checklist omits these checks. It also has no N/A path for docs-only or
configuration-only changes, although this PR is documentation-only. Add
the missing conditional checks or state when each item is not applicable.

[details]
[summary]Checklist additions[/summary]

+- [ ] `go vet ./...` passes for Go changes
+- [ ] Coverage above 80% for changed source files
+- [ ] New CLI commands have e2e BDD tests
+- [ ] Mark checks N/A for docs/config-only changes

[/details]

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- [ ] Tests pass (`pytest` / `go test -race ./...`)
- [ ] Linting passes (`ruff check src tests` / `golangci-lint`)
- [ ] Type checking passes (`basedpyright src`)
- [ ] Commit subjects ≤ 50 chars, body wrapped at 72
- [ ] Tests pass (`pytest` / `go test -race ./...`)
- [ ] Linting passes (`ruff check src tests` / `golangci-lint`)
- [ ] Type checking passes (`basedpyright src`)
- [ ] Commit subjects ≤ 50 chars, body wrapped at 72
- [ ] `go vet ./...` passes for Go changes
- [ ] Coverage above 80% for changed source files
- [ ] New CLI commands have e2e BDD tests
- [ ] Mark checks N/A for docs/config-only changes
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.github/PULL_REQUEST_TEMPLATE.md around lines 29 - 32, Update the pull
request checklist by adding conditional entries for go vet ./..., coverage above
80%, and e2e BDD tests when introducing new CLI commands; also provide an
explicit N/A option for docs-only or configuration-only changes, including the
existing test, lint, type-check, and commit checks.

Comment on lines +24 to +31
### III. Type Safety & Modern Python (NON-NEGOTIABLE)
Leverage Python 3.13+ features for code quality:
- Type hints required on all functions (params + returns)
- Use modern syntax: `list[str]` not `List[str]`
- Dataclasses for data models
- Immutable data structures preferred
- Pass basedpyright type checker in standard mode
- No `typing.Any` without justification

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🗄️ Data Integrity & Integration | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

rg -n -C3 \
  'basedpyright|ty check|mypy|ruff|golangci|go vet|gofmt|80|markdown|yaml' \
  .pre-commit-config.yaml pyproject.toml

Repository: LobsterTrap/lola

Length of output: 2887


🏁 Script executed:

#!/bin/bash
set -euo pipefail

printf '%s\n' '--- .pre-commit-config.yaml ---'
cat -n .pre-commit-config.yaml

printf '%s\n' '--- constitution.md lines 20-35 and 135-155 ---'
sed -n '20,35p;135,155p' .specify/memory/constitution.md

printf '%s\n' '--- related configuration and references ---'
rg -n -C3 'basedpyright|typeCheckingMode|ty check|mypy|automated|gate|coverage|pre-commit' \
  .specify/memory/constitution.md .pre-commit-config.yaml pyproject.toml README.md \
  2>/dev/null || true

Repository: LobsterTrap/lola

Length of output: 9024


Align the documented pre-commit gates with the hooks.

.pre-commit-config.yaml does not run basedpyright; it runs ty check and mypy. Add a basedpyright hook or document an enforced checker. Lines 143-148 also list gates without corresponding hooks. Remove those claims or add the required hooks.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.specify/memory/constitution.md around lines 24 - 31, Update the “Type
Safety & Modern Python” requirements in the constitution and the pre-commit gate
documentation to match the checks actually enforced by .pre-commit-config.yaml:
either add a basedpyright hook and hooks for every listed gate, or remove
unsupported gate claims and document the existing ty check and mypy checks
instead.

Comment on lines +177 to +188
### Constitution Authority
- This constitution supersedes code review preferences
- All PRs must verify compliance via checklist
- Violations require justification in PR description
- Amendments require approval from both maintainers

### Amendment Process
1. Propose change with rationale
2. Discuss impact on existing code
3. Document migration plan if breaking
4. Require unanimous maintainer approval
5. Update constitution and announce

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Use one amendment approval rule.

Line 181 requires approval from “both maintainers”. Line 187 requires
“unanimous maintainer approval”. These rules differ when the maintainer
count is not exactly two. Use one term, such as “all current maintainers”,
in both sections.

[details]
[summary]Proposed wording[/summary]

- Amendments require approval from both maintainers
+ Amendments require approval from all current maintainers
...
-4. Require unanimous maintainer approval
+4. Require approval from all current maintainers

[/details]

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
### Constitution Authority
- This constitution supersedes code review preferences
- All PRs must verify compliance via checklist
- Violations require justification in PR description
- Amendments require approval from both maintainers
### Amendment Process
1. Propose change with rationale
2. Discuss impact on existing code
3. Document migration plan if breaking
4. Require unanimous maintainer approval
5. Update constitution and announce
### Constitution Authority
- This constitution supersedes code review preferences
- All PRs must verify compliance via checklist
- Violations require justification in PR description
- Amendments require approval from all current maintainers
### Amendment Process
1. Propose change with rationale
2. Discuss impact on existing code
3. Document migration plan if breaking
4. Require approval from all current maintainers
5. Update constitution and announce
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.specify/memory/constitution.md around lines 177 - 188, Use consistent
approval wording in the “Constitution Authority” and “Amendment Process”
sections: replace the differing “both maintainers” and “unanimous maintainer
approval” phrases with one shared rule, such as approval from all current
maintainers.

Comment thread AGENTS.md
- `src/lola/cli/market.py` — Marketplace management
- `src/lola/models.py` — Data models
- `src/lola/config.py` — Global paths
- `src/lola/targets.py` — Assistant definitions

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🗄️ Data Integrity & Integration | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

fd -t f -t d 'targets(\.py)?$' src/lola || true
rg -n 'src/lola/targets(\.py|/)' \
  AGENTS.md .specify/memory/constitution.md docs/dev-guide

Repository: LobsterTrap/lola

Length of output: 398


🏁 Script executed:

#!/bin/bash
set -euo pipefail

python3 - <<'PY'
from pathlib import Path

root = Path(".")
checks = {
    "AGENTS.md": ["src/lola/targets.py"],
    ".specify/memory/constitution.md": [
        "src/lola/targets/",
    ],
}
for name, needles in checks.items():
    path = root / name
    text = path.read_text()
    print(f"{name}: exists={path.exists()}")
    for needle in needles:
        lines = [
            i for i, line in enumerate(text.splitlines(), 1)
            if needle in line
        ]
        print(f"  {needle}: lines={lines}")

for rel in ("src/lola/targets.py", "src/lola/targets"):
    path = root / rel
    print(f"{rel}: exists={path.exists()} type="
          f"{'dir' if path.is_dir() else 'file' if path.is_file() else 'missing'}")

print("tracked target paths:")
for path in __import__("subprocess").check_output(
    ["git", "ls-files", "src/lola/targets.py", "src/lola/targets"],
    text=True,
).splitlines():
    print(f"  {path}")
PY

Repository: LobsterTrap/lola

Length of output: 672


Fix the targets path in AGENTS.md.

src/lola/targets.py does not exist. The target definitions are in src/lola/targets/. Update Line 86.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@AGENTS.md` at line 86, Update the target-definition reference on line 86 of
AGENTS.md from the nonexistent src/lola/targets.py file to the existing
src/lola/targets/ directory, preserving the surrounding description.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants