Open
Conversation
Signed-off-by: Joana Maia <jmaia@contractor.linuxfoundation.org>
Signed-off-by: Joana Maia <jmaia@contractor.linuxfoundation.org>
Signed-off-by: Joana Maia <jmaia@contractor.linuxfoundation.org>
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a set of Claude Code project guidelines under .claude/ to standardize UI component usage, pnpm monorepo workflows, local DB setup/migrations, and documentation authoring practices for the LFX Insights repo, plus aligns CLAUDE.md with current project structure and Nuxt version.
Changes:
- Introduces new
.claude/agents, rules, commands, skills, and settings to codify development workflows and permissions. - Updates
CLAUDE.mdwith corrected pnpm install guidance, Nuxt 4 reference, and expanded frontend directory structure. - Adds
CLAUDE.local.mdto.gitignore.
Reviewed changes
Copilot reviewed 8 out of 9 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
| CLAUDE.md | Updates repo guidance (pnpm filter, Nuxt 4) and expands documented frontend structure/setup modules. |
| .gitignore | Ignores CLAUDE.local.md and normalizes **/AGENTS.md entry formatting. |
| .claude/skills/tech-writer/Skill.md | Adds VitePress documentation authoring standards and workflow for public docs. |
| .claude/settings.json | Adds Claude Code command/file permission allow/deny configuration. |
| .claude/rules/pnpm-workspace-commands.md | Documents required pnpm workspace command conventions for installs and scripts. |
| .claude/rules/always-use-uikit.md | Enforces replacing raw HTML primitives with the project uikit in Vue templates. |
| .claude/commands/db-setup.md | Documents Docker-based local Postgres setup and applying Flyway migrations. |
| .claude/commands/db-migrate.md | Documents applying/creating Flyway migrations and common troubleshooting. |
| .claude/agents/component-builder.md | Adds a component-builder agent spec for building Vue UI with uikit + Tailwind + PrimeVue, including Storybook rules. |
Comments suppressed due to low confidence (1)
CLAUDE.md:48
- This section says “All paths below are relative to the
frontend/directory.”, but the tree that follows is rooted atfrontend/(suggesting paths are relative to the repo root). Please align these: either remove the leadingfrontend/from the tree, or change the sentence to say paths are relative to the repository root.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Joana Maia <jmaia@contractor.linuxfoundation.org>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Joana Maia <jmaia@contractor.linuxfoundation.org>
Signed-off-by: Joana Maia <jmaia@contractor.linuxfoundation.org>
gaspergrom
approved these changes
Mar 25, 2026
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.
This pull request adds new documentation and rules to the
.claude/directory to standardize development workflows, UI conventions, and documentation practices for the LFX Insights project. The changes provide clear guidelines for using the project's UI kit, managing the database locally, writing technical documentation, and running commands in a pnpm monorepo environment. It also updates the mainCLAUDE.mdto reflect new standards and corrects framework references.New documentation and rules:
UI Development Standards:
component-builderagent, detailing how to build Vue 3 UI components using only the project's uikit, Tailwind, and PrimeVue, with specifics on file structure and Storybook stories. (.claude/agents/component-builder.md)Database Workflow Documentation:
Documentation Authoring Standards:
Monorepo and Command Usage Rules:
pnpmfor all package management and script execution, with a command reference and rationale. (.claude/rules/pnpm-workspace-commands.md).claude/settings.jsonfile specifying command permissions for Claude Code, allowing safe operations and restricting destructive or sensitive actions. (.claude/settings.json)Project documentation updates:
CLAUDE.mdto reference the correctpnpm install --filter frontendcommand and changed the framework version from Nuxt 3 to Nuxt 4 for accuracy. [1] [2]These additions and updates ensure all contributors follow consistent standards for UI development, database management, documentation, and workspace operations, improving maintainability and onboarding for the project.