Skip to content

GitHub-style Repository Overhaul#7

Open
acidgreenservers wants to merge 9 commits intomainfrom
feat/github-clone-9954192816337520342
Open

GitHub-style Repository Overhaul#7
acidgreenservers wants to merge 9 commits intomainfrom
feat/github-clone-9954192816337520342

Conversation

@acidgreenservers
Copy link
Collaborator

This PR implements a major overhaul of the repository view, bringing it closer to a GitHub-like experience as requested. It includes:

  1. Frontend Refactor: RepositoryView.vue now uses a tabbed layout.
  2. New Features:
    • Code Browser: Browse files, switch branches/tags, view README.
    • Issues & PRs: Create, list, view, and comment on issues and pull requests.
    • Wiki: Create and edit wiki pages.
    • Releases: Manage releases.
    • Settings: Toggle features and manage repo settings.
  3. Backend Enhancements:
    • New database tables for all features.
    • New Git API endpoints for file system operations on bare repos.
    • CRUD endpoints for all new entities.

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

- 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>
@google-labs-jules
Copy link
Contributor

👋 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 @jules. You can find this option in the Pull Request section of your global Jules UI settings. You can always switch back!

New to Jules? Learn more at jules.google/docs.


For security, I will only act on instructions from the user who triggered this task.

google-labs-jules bot and others added 2 commits February 21, 2026 10:16
…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>
google-labs-jules bot and others added 6 commits February 21, 2026 16:58
- 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
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