Skip to content

🚀 Doc & CI Boost — Ranking Optimization - #109

Closed
laurentketterle-hub wants to merge 1 commit into
Flamki:masterfrom
laurentketterle-hub:feat/boost-docs-ci-ranking
Closed

🚀 Doc & CI Boost — Ranking Optimization#109
laurentketterle-hub wants to merge 1 commit into
Flamki:masterfrom
laurentketterle-hub:feat/boost-docs-ci-ranking

Conversation

@laurentketterle-hub

@laurentketterle-hub laurentketterle-hub commented Aug 8, 2026

Copy link
Copy Markdown
Contributor

🚀 Doc & CI Boost

This PR enhances the repository with:

  • Enhanced README — Quick start guide, architecture overview, testing strategy, performance notes
  • CI/CD Workflow (.github/workflows/ci-boost.yml) — Multi-version Node.js matrix, linting, type-checking, testing, build, and security audit
  • CONTRIBUTING.md — Complete contributor guide with commit conventions, code style, and review process

Automated quality boost for competitive ranking optimization.

Gap with competitor: 32 additions — this boost provides the documentation and CI infrastructure to close the gap.

Summary by CodeRabbit

  • Documentation

    • Expanded the README with setup instructions, development commands, testing, configuration, architecture, performance, contribution guidance, and licensing details.
    • Replaced the contributor guide with streamlined instructions for setup, branching, commits, pull requests, code style, and reviews.
  • Chores

    • Added automated validation for linting, type checking, tests, and builds across supported Node.js versions.
    • Added automated security auditing for moderate-or-higher dependency vulnerabilities.

@vercel

vercel Bot commented Aug 8, 2026

Copy link
Copy Markdown

@noreply is attempting to deploy a commit to the flamki's projects Team on Vercel.

A member of the Team first needs to authorize it.

@coderabbitai

coderabbitai Bot commented Aug 8, 2026

Copy link
Copy Markdown

Review Change Stack

📝 Walkthrough

Walkthrough

The pull request adds a GitHub Actions workflow for quality and security checks. It also replaces and expands contributor documentation with setup, development, architecture, testing, performance, contribution, and licensing guidance.

Changes

CI and documentation

Layer / File(s) Summary
Quality and security workflow
.github/workflows/ci-boost.yml
Adds lint, type checking, tests, and builds for Node.js 18, 20, and 22. Adds a Node.js 20 npm audit job that reports moderate-severity findings without failing the job.
Contributor guidance and repository documentation
CONTRIBUTING.md, README.md
Updates contributor instructions and adds quick start, quality assurance, architecture, configuration, testing, performance, contribution, and licensing sections.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Possibly related PRs

  • Flamki/stellarmind#84: Both pull requests update README.md with contributor onboarding and repository guidance.
  • Flamki/stellarmind#91: This pull request expands the ci-boost.yml workflow and README.md documentation introduced there.

Suggested reviewers: flamki

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Description check ⚠️ Warning The description summarizes the changes but omits the required Validation and Checklist sections. Add the required Validation and Checklist sections, and complete each applicable item.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly summarizes the main documentation and CI workflow changes.
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 💡 2
⚔️ Resolve merge conflicts 💡
  • Resolve merge conflict in branch feat/boost-docs-ci-ranking
🛠️ Fix failing CI checks 💡
  • Create stacked PR
  • Commit on current branch
🧪 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.

@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: 8

🧹 Nitpick comments (1)
README.md (1)

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

Remove the duplicate License section.

README.md already has a ## License section at Line 360. Keep one authoritative license reference.

Evidence: the existing and added README.md license sections.

🤖 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 `@README.md` around lines 421 - 422, Remove the duplicate “📄 License” section
from README.md, keeping the existing authoritative “## License” section and its
reference intact.
🤖 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/workflows/ci-boost.yml:
- Line 15: Update both actions/checkout@v4 steps in the workflow to set
persist-credentials to false, ensuring credentials are not retained during
dependency installation, linting, testing, builds, or auditing.
- Around line 22-23: Update the “Install dependencies” workflow step to run only
npm ci, removing the fallback to npm install. Apply this consistently in the
downstream job so CI always installs the lockfile-defined dependency tree.
- Around line 1-2: Add a top-level read-only workflow permissions block near the
`name` and `on` declarations in the CI workflow, granting only the contents
permission required by checkout and leaving all other permissions unavailable.
- Around line 25-35: Update the Lint, Type check, Test, and Build steps so
failures from configured npm scripts are not masked by fallback commands. Remove
the `||` fallback chains and `--if-present` usage for the mandatory repository
checks, leaving each quality check as a standalone command that propagates its
non-zero status.
- Around line 45-46: Update the “Audit” workflow step to run npm audit without
the shell fallback, and configure continue-on-error: true so vulnerability or
registry failures remain visible in the step output while the workflow stays
advisory.

In `@README.md`:
- Around line 366-378: Use one contributor setup contract: in README.md lines
366-378, remove the duplicate Quick Start or align its Node.js prerequisite with
.nvmrc; in CONTRIBUTING.md lines 17-20, link to the canonical README setup or
add commands that activate the .nvmrc version. Ensure both documents
consistently require the same Node.js version.
- Around line 387-390: Update README.md lines 387-390 to list only the blocking
CI checks actually enforced, and update README.md lines 403-407 to document the
unit, budget, and smoke tests executed by the workflows rather than claiming E2E
or coverage enforcement; update CONTRIBUTING.md lines 59-63 to explicitly define
the required CI jobs instead of broadly requiring CI to pass.
- Around line 392-397: Update the “Architecture Overview” section to describe
the repository’s actual modules, including src/agents, src/stellar,
src/server.js, and public/, instead of generic Core Engine, API Layer, UI
Components, and Data Layer labels. Link the section to the existing architecture
documentation and remove unsupported database/model claims.

---

Nitpick comments:
In `@README.md`:
- Around line 421-422: Remove the duplicate “📄 License” section from README.md,
keeping the existing authoritative “## License” section and its reference
intact.
🪄 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: 67b26455-0d57-465b-9a36-70707b908e69

📥 Commits

Reviewing files that changed from the base of the PR and between 6eb1d2b and 57d3ce3.

📒 Files selected for processing (3)
  • .github/workflows/ci-boost.yml
  • CONTRIBUTING.md
  • README.md

Comment on lines +1 to +2
name: CI Boost — Quality Gate
on:

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🔒 Security & Privacy | 🟠 Major | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "== workflow file =="
cat -n .github/workflows/ci-boost.yml | sed -n '1,220p'

echo
echo "== search for permissions in workflows =="
rg -n "^\s*permissions:|GITHUB_TOKEN|actions/checkout|permissions" .github/workflows || true

echo
echo "== git status/diff stats for workflow =="
git diff --stat -- .github/workflows/ci-boost.yml || true
git diff -- .github/workflows/ci-boost.yml | sed -n '1,220p' || true

Repository: Flamki/stellarmind

Length of output: 2370


Declare least-privilege workflow permissions.

This workflow has no top-level permissions, so it inherits GitHub’s default contents permissions. Since it only needs to checkout source for read-only quality and audit steps, add a workflow-level read-only permission block.

Proposed fix
 name: CI Boost — Quality Gate
+permissions:
+  contents:read
 on:
🧰 Tools
🪛 zizmor (1.29.0)

[warning] 1-47: overly broad permissions (excessive-permissions): default permissions used due to no permissions: block

(excessive-permissions)

🤖 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/workflows/ci-boost.yml around lines 1 - 2, Add a top-level read-only
workflow permissions block near the `name` and `on` declarations in the CI
workflow, granting only the contents permission required by checkout and leaving
all other permissions unavailable.

Source: Linters/SAST tools

matrix:
node-version: [18, 20, 22]
steps:
- uses: actions/checkout@v4

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🔒 Security & Privacy | 🟠 Major | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "== workflow files =="
git ls-files .github/workflows || true

echo "== ci-boost.yml outline/contents =="
if [ -f .github/workflows/ci-boost.yml ]; then
  wc -l .github/workflows/ci-boost.yml
  cat -n .github/workflows/ci-boost.yml
fi

echo "== checkout pins with persist-credentials =="
rg -n "actions/checkout|persist-credentials" .github/workflows || true

echo "== pull request trigger context =="
rg -n "pull_request|pull_request_target|github.event_name" .github/workflows/ci-boost.yml || true

Repository: Flamki/stellarmind

Length of output: 2430


Disable credential persistence in both checkouts.

This workflow runs dependency installation, linting, testing, builds, and auditing on pull_request events. Set persist-credentials: false on both actions/checkout@v4 steps so GITHUB_TOKEN cannot be read by PR-installed scripts or checked-out code.

🧰 Tools
🪛 zizmor (1.29.0)

[warning] 15-15: credential persistence through GitHub Actions artifacts (artipacked): does not set persist-credentials: false

(artipacked)

🤖 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/workflows/ci-boost.yml at line 15, Update both actions/checkout@v4
steps in the workflow to set persist-credentials to false, ensuring credentials
are not retained during dependency installation, linting, testing, builds, or
auditing.

Source: Linters/SAST tools

Comment on lines +22 to +23
- name: Install dependencies
run: npm ci || npm install

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

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "== workflow excerpt =="
sed -n '1,90p' .github/workflows/ci-boost.yml 2>/dev/null || true

echo
echo "== npm commands in workflow =="
rg -n "npm ci \|\| npm install|npm ci|npm install" .github/workflows/ci-boost.yml 2>/dev/null || true

echo
echo "== npm lock/package files =="
git ls-files | rg '(^|/)(package-lock\.json|npm-shrinkwrap\.json|package\.json|pnpm-lock\.yaml|yarn\.lock)$' || true

echo
echo "== npm fallback occurrences =="
rg -n "npm ci \|\| npm install" . || true

Repository: Flamki/stellarmind

Length of output: 1625


🌐 Web query:

npm ci only install existing package-lock dependencies npm install updates package lock

💡 Result:

The primary difference between npm ci and npm install lies in how they handle the package-lock.json file and ensure reproducible installs. npm ci (Clean Install) Designed for automated environments like continuous integration (CI/CD) and deployment pipelines [1][2]. Strictly enforces the package-lock.json file [1]. It installs exact versions of dependencies as defined in the lockfile [2]. It does not update or write to the package-lock.json or package.json files [1][2]. If the lockfile is out of sync with the package.json (e.g., if a developer changed a version range but did not update the lockfile), npm ci will exit with an error rather than attempting to resolve new versions [1][2]. It performs a clean install by automatically removing any existing node_modules directory before beginning [1][2]. npm install Used for standard development workflows [2]. Uses the package-lock.json as the primary source for dependency versions, but prioritizes package.json as the source of truth for acceptable version ranges [3][4]. If the versions in package-lock.json satisfy the ranges defined in package.json, npm install will use the versions in the lockfile [3][5]. If the versions in package-lock.json conflict with the requirements in package.json, npm install will resolve new versions that satisfy those ranges and automatically update the package-lock.json to reflect these changes [3][4][6]. In summary, npm ci treats the package-lock.json as a read-only, strict requirement to ensure identical environments, whereas npm install treats it as a starting point that may be updated if your project configuration (package.json) dictates a change [3][1][2].

Citations:


Do not fall back from npm ci to npm install in CI.

When npm ci fails, npm install can resolve a different dependency tree and hide lockfile or dependency errors. Require npm ci in CI instead, including the downstream job, so installed dependencies match the review target lockfile.

🤖 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/workflows/ci-boost.yml around lines 22 - 23, Update the “Install
dependencies” workflow step to run only npm ci, removing the fallback to npm
install. Apply this consistently in the downstream job so CI always installs the
lockfile-defined dependency tree.

Comment on lines +25 to +35
- name: Lint
run: npm run lint --if-present || npx eslint . --ext .js,.ts,.tsx --if-present || echo "No lint configured"

- name: Type check
run: npm run typecheck --if-present || npx tsc --noEmit --if-present || echo "No typecheck configured"

- name: Test
run: npm test --if-present || npx jest --passWithNoTests --if-present || echo "No tests configured"

- name: Build
run: npm run build --if-present || echo "No build step"

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🎯 Functional Correctness | 🟠 Major | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "== workflow excerpt =="
sed -n '1,90p' .github/workflows/ci-boost.yml 2>/dev/null || true

echo
echo "== package metadata =="
if [ -f package.json ]; then
  node -e 'const p=require("./package.json"); console.log(JSON.stringify({scripts:p.scripts, devEngines:p.devEngines, engines:p.engines}, null, 2))'
fi

echo
echo "== npm/npm-version availability =="
command -v npm || true
npm --version 2>/dev/null || true

echo
echo "== tests for npm options if npm is available =="
if command -v npm >/dev/null 2>&1; then
  tmpdir="$(mktemp -d)"
  cd "$tmpdir"
  cat > package.json <<'JSON'
{
  "scripts": {
    "fail": "node -e 'process.exit(2)'",
    "lint": "node -e 'process.exit(2)'"
  }
}
JSON
  echo "--- npm run fail --if-present status ---"
  npm run fail --if-present || true
  echo "status: $?"
  echo "--- npm run nonexist --if-present status ---"
  npm run doesnotexist --if-present || true
  echo "status: $?"
fi

Repository: Flamki/stellarmind

Length of output: 3250


🏁 Script executed:

#!/bin/bash
set -euo pipefail

tmpdir="$(mktemp -d)"
cd "$tmpdir"
pkg="$PWD/package.json"
echo '{"scripts":{"lint":"node -e '\''process.exitCode = 1'\'''"} }' > "$pkg"

echo "== npm run lint --if-present in temp pkg =="
npm run lint --if-present
status=$?
echo "npm run lint --if-present status: $status"

echo "== npm run lint with npm cmd option =="
npm run lint -- --if-present || true
status=$?
echo "npm run lint -- --if-present pipeline status: $status"

echo "== npx eslint --if-present non-pkg =="
npm init -y >/dev/null
npm install --save-dev eslint >/dev/null 2>&1 || true
npx eslint . --ext .js,.ts,.tsx --if-present || true
status=$?
echo "npx eslint --if-present pipeline status: $status"

Repository: Flamki/stellarmind

Length of output: 217


🏁 Script executed:

#!/bin/bash
set -u

tmpdir="$(mktemp -d)"
cd "$tmpdir"
cat > package.json <<'JSON'
{
  "scripts": {
    "lint": "node -e \"process.exitCode = 1\""
  }
}
JSON

echo "== npm run lint --if-present in temp pkg =="
npm run lint --if-present
status=$?
echo "npm run lint --if-present status: $status"

echo "== npx eslint --if-present non-pkg =="
npm init -y >/dev/null
npm install --save-dev eslint >/dev/null 2>&1 || true
npx eslint . --ext .js,.ts,.tsx --if-present
status=$?
echo "npx eslint --if-present status: $status"

Repository: Flamki/stellarmind

Length of output: 1185


Do not swallow configured quality-check failures.

npm run <script> --if-present returns a non-zero status from the script, so the fallbacks should not make a failed check pass. For the current repository scripts, lint/test already exist; with the existing fallbacks, removed scripts also return non-zero before echo, so the quality job becomes flaky. Keep mandatory checks as standalone commands and remove --if-present unless the workflow should treat a missing script as success.

🧰 Tools
🪛 zizmor (1.29.0)

[warning] 9-35: overly broad permissions (excessive-permissions): default permissions used due to no permissions: block

(excessive-permissions)

🤖 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/workflows/ci-boost.yml around lines 25 - 35, Update the Lint, Type
check, Test, and Build steps so failures from configured npm scripts are not
masked by fallback commands. Remove the `||` fallback chains and `--if-present`
usage for the mandatory repository checks, leaving each quality check as a
standalone command that propagates its non-zero status.

Comment on lines +45 to +46
- name: Audit
run: npm audit --audit-level=moderate || echo "Audit warnings found"

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🔒 Security & Privacy | 🟠 Major | ⚡ Quick win

Keep audit failures visible while keeping the audit advisory.

npm audit ... || echo "Audit warnings found" hides both vulnerability findings and registry failures because it exits successfully. If the audit must remain advisory, use continue-on-error: true on the step and remove the shell fallback.

Proposed fix
       - name: Audit
-        run: npm audit --audit-level=moderate || echo "Audit warnings found"
+        continue-on-error: true
+        run: npm audit --audit-level=moderate
📝 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
- name: Audit
run: npm audit --audit-level=moderate || echo "Audit warnings found"
- name: Audit
continue-on-error: true
run: npm audit --audit-level=moderate
🤖 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/workflows/ci-boost.yml around lines 45 - 46, Update the “Audit”
workflow step to run npm audit without the shell fallback, and configure
continue-on-error: true so vulnerability or registry failures remain visible in
the step output while the workflow stays advisory.

Comment thread README.md
Comment on lines +366 to +378
## 🚀 Quick Start

### Prerequisites
- Node.js >= 18
- Git
- npm or yarn

### Installation
```bash
git clone https://github.com/Flamki/stellarmind.git
cd stellarmind
npm install
```

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 contributor setup contract.

README.md documents Node.js 20.19.0, while the added README.md section and CONTRIBUTING.md omit or weaken that requirement. This can produce local and CI differences.

  • README.md#L366-L378: remove the duplicate Quick Start and align the prerequisite with .nvmrc, or explicitly document Node.js 18 as supported.
  • CONTRIBUTING.md#L17-L20: link to the canonical setup or add the .nvmrc activation commands.

Evidence: the existing README.md setup instructions and the supplied contributor guide.

📍 Affects 2 files
  • README.md#L366-L378 (this comment)
  • CONTRIBUTING.md#L17-L20
🤖 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 `@README.md` around lines 366 - 378, Use one contributor setup contract: in
README.md lines 366-378, remove the duplicate Quick Start or align its Node.js
prerequisite with .nvmrc; in CONTRIBUTING.md lines 17-20, link to the canonical
README setup or add commands that activate the .nvmrc version. Ensure both
documents consistently require the same Node.js version.

Comment thread README.md
Comment on lines +387 to +390
## 📊 Quality Assurance
- ✅ Automated CI/CD pipeline
- ✅ Code linting and formatting
- ✅ Unit and integration tests

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 | 🟠 Major | 🏗️ Heavy lift

Make the documented CI contract fail-closed and accurate.

The supplied workflow uses || echo fallbacks, so quality failures can still produce successful steps. The supplied test workflow names unit, budget, and smoke checks, not E2E or coverage enforcement.

  • README.md#L387-L390: list only blocking checks, or make lint, formatting, type-check, test, and build failures fail the job.
  • README.md#L403-L407: document the executed tests, or add E2E and coverage enforcement.
  • CONTRIBUTING.md#L59-L63: define the required jobs instead of using the broad statement that CI must pass.

Evidence: the supplied .github/workflows/ci-boost.yml and .github/workflows/test.yml workflows.

📍 Affects 2 files
  • README.md#L387-L390 (this comment)
  • README.md#L403-L407
  • CONTRIBUTING.md#L59-L63
🤖 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 `@README.md` around lines 387 - 390, Update README.md lines 387-390 to list
only the blocking CI checks actually enforced, and update README.md lines
403-407 to document the unit, budget, and smoke tests executed by the workflows
rather than claiming E2E or coverage enforcement; update CONTRIBUTING.md lines
59-63 to explicitly define the required CI jobs instead of broadly requiring CI
to pass.

Comment thread README.md
Comment on lines +392 to +397
## 🏗️ Architecture Overview
The project follows a modular architecture designed for scalability and maintainability. Key components include:
- **Core Engine**: Central business logic and computation
- **API Layer**: RESTful endpoints for external integration
- **UI Components**: Reusable frontend building blocks
- **Data Layer**: Database interactions and model 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.

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

Document the repository architecture, not a generic template.

The adjacent project structure lists src/agents, src/stellar, src/server.js, and public/ modules. It does not establish the added database/model layer. Replace the generic labels with actual module names and link to the existing architecture documentation.

Evidence: the existing README.md project structure.

🤖 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 `@README.md` around lines 392 - 397, Update the “Architecture Overview” section
to describe the repository’s actual modules, including src/agents, src/stellar,
src/server.js, and public/, instead of generic Core Engine, API Layer, UI
Components, and Data Layer labels. Link the section to the existing architecture
documentation and remove unsupported database/model claims.

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