Conversation
- Refactored `RepositoryView.vue` to use a tabbed interface (Code, Issues, PRs, Wiki, Releases, Settings). - Implemented `CodeTab.vue` with file browser, branch switcher, and README display using new Git API endpoints. - Implemented `IssuesTab.vue` and `PullRequestsTab.vue` for full project management capabilities. - Implemented `WikiTab.vue` for project documentation. - Implemented `ReleasesTab.vue` for release management. - Implemented `SettingsTab.vue` for repository configuration. - Added necessary database tables (`issues`, `pull_requests`, `wiki_pages`, etc.) in `db.js`. - Created `git-ops.js` utility for low-level Git operations. - Exposed new REST API endpoints in `routes.js`. Co-authored-by: acidgreenservers <167657598+acidgreenservers@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
…ustTab - Removed extensive legacy/unused code blocks from RepositoryView.vue. - Implemented `TrustTab.vue` to restore the Trust tab functionality which was previously disabled. - Cleaned up `repository.api.js` by removing unused API methods (`getReadme`, `getInstallationGuide`, `getObservations`, `createObservation`, `getVersionManifest`, `getDiff`, `getLineage`). - Fixed a template syntax error in RepositoryView.vue caused by code removal. - Verified Trust tab functionality with Playwright. Co-authored-by: acidgreenservers <167657598+acidgreenservers@users.noreply.github.com>
- Added `build: .` to the `registry` service in `registry-server/docker-compose.yml`. - This ensures that `docker compose up --build` uses the local source code and builds the image from the local Dockerfile, rather than pulling the pre-built `ghcr.io/acidgreenservers/gitlobster:main` image. - Resolves the issue where local development changes were not reflected in the running container. Co-authored-by: acidgreenservers <167657598+acidgreenservers@users.noreply.github.com>
- Fixed "Settings", "Wiki", and "Issues" saving functionality by allowing implicit "local-admin" authentication in `auth.js` for local/desktop environments. - Updated `SettingsTab.vue`, `WikiTab.vue`, and `IssuesTab.vue` to handle API errors gracefully with `try/catch` blocks and alert messages. - Implemented a new "Branch" button in the repository header with a dropdown showing CLI commands (`git checkout -b`). - Updated "Star" and "Fork" buttons to use the same dropdown pattern, displaying `botkit` CLI commands alongside the UI actions. - Verified fixes with `verification/verify_fixes.py`. Co-authored-by: acidgreenservers <167657598+acidgreenservers@users.noreply.github.com>
Co-authored-by: acidgreenservers <167657598+acidgreenservers@users.noreply.github.com>
Co-authored-by: acidgreenservers <167657598+acidgreenservers@users.noreply.github.com>
This commit entirely refactors the legacy state-based `App.vue` application into a fully fledged Single Page Application (SPA) using `vue-router`. It introduces a new `RepositoryLayout` that dynamically renders "Code", "Issues", "Pull Requests", "Releases", "Wiki", and "Settings" tabs based on URL parameters (`/:agent/:repo/:tab`). It maintains the "Agent Native" philosophy by intercepting all user write actions via the `AgentActionModal`, ensuring that humans can only browse, while bots execute the actual commands. Backend support for these views was added via new tables in `db.js`, new secure endpoints in `routes.js`, and raw git operations via `git-ops.js`. Co-authored-by: acidgreenservers <167657598+acidgreenservers@users.noreply.github.com>
Co-authored-by: ClawStackStudios <266947610+ClawStackStudios@users.noreply.github.com>
…184549178844402909 fix(ux): add aria-labels to icon-only buttons in modals
This PR implements a major overhaul of the repository view, bringing it closer to a GitHub-like experience as requested. It includes:
RepositoryView.vuenow uses a tabbed layout.This transforms the registry from a simple package viewer into a collaborative development platform.
PR created automatically by Jules for task 9954192816337520342 started by @acidgreenservers