Skip to content

docs: add written procedures to Ollama and PR review guides#315

Open
rachaelrenk wants to merge 7 commits into
mainfrom
rrenk/guides-written-procedures
Open

docs: add written procedures to Ollama and PR review guides#315
rachaelrenk wants to merge 7 commits into
mainfrom
rrenk/guides-written-procedures

Conversation

@rachaelrenk

@rachaelrenk rachaelrenk commented Jul 9, 2026

Copy link
Copy Markdown
Contributor

Summary

Add thorough step-by-step written procedures to two high-traffic guides that previously had video content but thin or missing written coverage.

Notion tracking item: https://app.notion.com/p/38143263616d81e58b9fc1522c554ac7


how-to-set-up-ollama.mdx (2,433 visitors / 3 months)

The page previously had a video embed and narrative sections with no actual install commands or runnable code. Added:

  • Prerequisites — hardware requirements table (RAM/VRAM by model size); macOS 14 Sonoma+ / Windows 10+ / Ubuntu 20.04+ requirements
  • Install instructions — platform-specific steps for macOS (curl script + DMG), Linux (curl), and Windows (PowerShell one-liner + installer)
  • Run your first modelollama pull / ollama run commands with real model names; ollama ls / ollama ps reference
  • Model types glossary — reformatted for clarity
  • Compare model performance — non-interactive prompt mode, --verbose flag for timing stats, ollama ps for memory usage- Compare model performance — non-interactive prompt mode, --verbose flag for timing stats, ollama ps for memory usage- **Comparnative Ollama SDKs
  • Customize model behaviorModelfile walkthrough with a worked example (system prompt + parameters)
  • Productivity tips and Next steps

how-to-review-prs-like-a-senior-dev.mdx (225 visitors / 3 months)

The page previously had The page previously had The page previously had The page previously had The page previously had The page previously had The pageed:

  • Intro — reframes the problem (structured review vs. generic AI summaries)
  • Prerequisites — Git-tracked project + optional GitHub CLI
  • Why structured review matters — explains each section's purpose (Risk Assessment, Critical Issues, merge confidence) before showing the prompt
  • Step-by-step procedure — how to get the diff (GitHub CLI, git diff, Code Review panel), attach it as context, and run the prompt in Warp
  • Prompt template — preserved verbatim from the original
  • Understand the output — walks through each section (Risk Assessment, Critical Issues, Concerns, Maintainer Decision Guide) so readers know what to do with the output
  • Tips for iterating — example follow-up prompts for going deeper on specific files, concerns, or fixes
  • Next steps with related guides

Generated with Oz

Co-Authored-By: Oz oz-agent@warp.dev

Add thorough step-by-step written procedures to two high-traffic guides
that previously had video content but thin written coverage.

how-to-set-up-ollama.mdx:
- Add Prerequisites section with VRAM/RAM requirements table
- Add platform-specific install instructions (macOS, Linux, Windows)
- Add proper model pull/run commands with real model names
- Add model types glossary (updated formatting)
- Add model performance comparison section with timing tips
- Add OpenAI-compatible API integration with Python and Node.js examples
- Add Modelfile customization section with worked example
- Add Productivity tips and Next steps sections

how-to-review-prs-like-a-senior-dev.mdx:
- Rewrite opening with clearer framing (structured review vs. AI summaries)
- Add Prerequisites section
- Add 'Why structured review matters' conceptual section
- Add step-by-step procedure: get diff, attach context, use prompt
- Keep existing structured prompt template (preserved verbatim)
- Add section-by-section explanation of the prompt output
- Add Tips for iterating with example follow-up prompts
- Add Next steps with related guides

Co-Authored-By: Oz <oz-agent@warp.dev>
@cla-bot cla-bot Bot added the cla-signed label Jul 9, 2026
@vercel

vercel Bot commented Jul 9, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
docs Ready Ready Preview, Comment Jul 10, 2026 5:54pm

Request Review

@oz-for-oss

oz-for-oss Bot commented Jul 9, 2026

Copy link
Copy Markdown
Contributor

@rachaelrenk

I'm starting a first review of this pull request.

You can view the conversation on Warp.

I completed the review and no human review was requested for this pull request.

Comment /oz-review on this pull request to retrigger a review (up to 3 times on the same pull request).

Powered by Oz

@oz-for-oss oz-for-oss Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Overview

This PR expands two guides with written, step-by-step procedures for PR review and Ollama setup. The structure is useful, but the Ollama benchmarking section documents a command that will not produce the timing stats it tells readers to compare.

Concerns

  • The ollama run benchmark example needs --verbose before it can show token timing stats.
  • The runnable GitHub CLI examples use angle-bracket placeholders instead of the docs style's ALL_CAPS placeholder values.

Verdict

Found: 1 critical, 0 important, 1 suggestions

Request changes

Comment /oz-review on this pull request to retrigger a review (up to 3 times on the same pull request).

Powered by Oz

Comment thread src/content/docs/guides/external-tools/how-to-set-up-ollama.mdx Outdated
Comment thread src/content/docs/guides/agent-workflows/how-to-review-prs-like-a-senior-dev.mdx Outdated
After cross-checking against official Ollama docs:

- Fix macOS minimum version: macOS 12+ → macOS 14 Sonoma+
- Fix macOS install: replace non-official brew path with official curl
  script (same script as Linux); add DMG as manual alternative
- Fix Windows install: add official PowerShell one-liner
  (irm https://ollama.com/install.ps1 | iex) alongside manual installer
- Fix CLI command: ollama list → ollama ls (official canonical command)
- Fix base URL: add trailing slash to http://localhost:11434/v1/ per
  official OpenAI compat docs
- Fix REST API curl example: /api/generate → /api/chat with messages format
- Remove undocumented preloading tip (ollama run <model> "")
- Add --verbose flag for timing stats instead of claiming they print by default
- Mention native ollama-python/ollama-js SDKs alongside OpenAI compat path
- Fix gh pr view --web comment (was incorrectly 'copy the diff URL')

Co-Authored-By: Oz <oz-agent@warp.dev>
rachaelrenk and others added 2 commits July 9, 2026 16:08
Co-authored-by: oz-for-oss[bot] <277970191+oz-for-oss[bot]@users.noreply.github.com>
…-a-senior-dev.mdx

Co-authored-by: oz-for-oss[bot] <277970191+oz-for-oss[bot]@users.noreply.github.com>
**Hardware requirements**

Before running large language models (LLMs) locally, confirm your hardware can handle them.
You'll need enough memory to load the model weights. The rule of thumb: roughly 1GB of memory per billion parameters.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

Please avoid colloquialisms like "rule of thumb".

Comment thread src/content/docs/guides/external-tools/how-to-set-up-ollama.mdx Outdated
- Remove 'rule of thumb' colloquialism; replace with 'as a general estimate'
- Remove em dash from Apple Silicon sentence per suggestion (use period)
- Consolidate benchmark example to single --verbose command so timing
  stats are actually visible (critical fix from oz-for-oss review)
- Replace <PR-number> angle-bracket placeholders with PR_NUMBER (ALL_CAPS
  per docs style guide) in both the code block and inline reference

Co-Authored-By: Oz <oz-agent@warp.dev>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant