Purpose: Reference document for the Scrum → Kanban transition.
Audience: All members of the Razzmatazz team.
Effective: Starting the week of the transition.
Ran tool Read file: /Users/bgregor/Documents/git/odh-dashboard/frontend/src/plugins/extensions/routes.ts Read file: /Users/bgregor/Documents/git/odh-dashboard/frontend/src/app/AppRoutes.tsx Read file: /Users/bgregor/Documents/git/odh-dashboard/frontend/src/pages/projects/ProjectViewRoutes.tsx Read file: /Users/bgregor/Documents/git/odh-dashboard/frontend/src/pages/modelServing/ModelServingRoutes.tsx Read file: /Users/bgregor/Documents/git/odh-dashboard/frontend/src/pages/featureStore/FeatureStoreRoutes.tsx Here is a table summarizing the main routes and their navigation hierarchy for your application, based on the route definitions and nested route files:
| Path Pattern | Component/Element (Page) | Children / Nested Routes? | Notes / Description |
|---|
This Agents.md file provides comprehensive guidance for OpenAI Codex and other AI agents working with this codebase.
/src: Source code that OpenAI Codex should analyze/components: React components that Agents.md helps OpenAI Codex understand/pages: Next.js pages where OpenAI Codex can generate route handlers
/styles: CSS and styling conventions for OpenAI Codex to follow
Bug Report: read_file tool strips frontmatter from .mdc files
Version: 1.0.0 (Universal)
VSCode Version: 1.96.2
Commit: 53b99ce608cba35127ae3a050c1738a959750860
Date: 2025-06-04T19:21:39.410Z
Electron: 34.5.1
Chromium: 132.0.6834.210
Node.js: 20.19.0
V8: 13.2.152.41-electron.0
| #!/bin/bash | |
| echo "cloning instructlab" | |
| git clone https://github.com/instructlab/instructlab.git | |
| echo "Creating a new venv" | |
| python3 -m venv --upgrade-deps venv | |
| echo "Activating venv" | |
| source venv/bin/activate | |
| echo "Installing..." | |
| pip install instructlab | |
| echo "Initializing default config" |
| #!/bin/bash | |
| # @Link to the teams docs / confluence / etc. | |
| main() { | |
| if [[ $1 == "-h" ]]; then | |
| print_usage | |
| exit 0 | |
| fi | |
| OS=$1 | |
| docker_authenticate |