Skip to content

Docs and SDK Updates#7

Merged
NellowTCS merged 5 commits into
mainfrom
docs-and-sdk-updates
Jun 19, 2026
Merged

Docs and SDK Updates#7
NellowTCS merged 5 commits into
mainfrom
docs-and-sdk-updates

Conversation

@NellowTCS

@NellowTCS NellowTCS commented Jun 19, 2026

Copy link
Copy Markdown
Owner

Summary by CodeRabbit

  • Documentation
    • Added a complete documentation site (Getting Started, installation, Quick Start).
    • Published Architecture pages (boot flow, kernel, VFS, shell) plus full SDK and shell command references.
    • Added app development guides, including .pycapp packaging and built-in app listings.
  • New Features
    • Enhanced app workflow with pycomp CLI commands for init/build/run/validate/test.
    • Added environment-variable support for customizing runtime data and root directories.
  • Chores
    • Updated contribution guidance and refined the docs/demo publishing setup.

@coderabbitai

coderabbitai Bot commented Jun 19, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Warning

Review limit reached

@NellowTCS, we couldn't start this review because you've reached your PR review rate limit.

More reviews will be available in 21 minutes and 11 seconds. Learn how PR review limits work.

Your organization has used up its prepaid credits, and credit purchases are no longer available. Enable the review add-on in the billing tab to keep reviews running — you're only billed for reviews past your plan's rate limits ($0.25/file).

⌛ How to resolve this issue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based credits.

🚦 How do rate limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan refill rate.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, the refill rate gradually slows as usage increases. The highest same-day bursts are limited more strictly.

Please see our Fair Usage Limits Policy for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: c2964806-d177-4d18-a2c4-b5cfaa1fe16a

📥 Commits

Reviewing files that changed from the base of the PR and between 54d9c92 and 02430b0.

📒 Files selected for processing (10)
  • .github/workflows/pages.yml
  • Demo/pycomputer_bundled.js
  • pyComputer/pycomputer/kernel/boot.py
  • pyComputer/pycomputer/pkg/bundler.py
  • pyComputerSDK/pycomputer
  • pyComputerSDK/src/pycomputersdk/cli/commands/init.py
  • pyComputerSDK/src/pycomputersdk/cli/commands/run.py
  • pyComputerSDK/src/pycomputersdk/cli/commands/test.py
  • pyComputerSDK/src/pycomputersdk/cli/commands/validate.py
  • pyComputerSDK/src/pycomputersdk/testing.py
📝 Walkthrough

Walkthrough

Adds a comprehensive DocMD-based documentation site for pyComputer (landing page, getting-started guides, architecture references, SDK API docs, app development guides, shell/pkg command references), the pycomp CLI development tool with init/build/validate/test/run commands, SDK module re-exports and testing utilities, environment variable overrides for data/root directory paths, Hatchling build backend migration for pyComputerSDK, root workspace configuration, and CONTRIBUTING.md guidance.

Changes

Documentation Site and SDK Developer Tooling

Layer / File(s) Summary
DocMD site tooling and configuration
Docs/package.json, Docs/.gitignore, Docs/docmd.config.js
Establishes the npm package, ignore rules, and full docmd config: site identity/URL/logo/favicon, theme (name, default mode, code highlighting, copy widgets), layout/footer with styled description and multi-column resource/community links, plugins (search, SEO, sitemap, mermaid, git, llms with full-context), global flags (search, minify, auto title, copy code, nav), navigation structure with grouped sections and GitHub link, and edit-link settings.
Documentation landing page and getting-started guides
Docs/docs/index.md, Docs/docs/getting-started/*
Adds the hero landing page with feature cards, quick example, installation steps, and section links; the getting-started section covers core concepts (two-disk model, VFS with Mermaid diagram, app/pkg/SDK/shell overview), installation (prerequisites, clone/run options, SDK setup), and quick-start walkthrough (shell commands, app install, build, web-demo launch).
Architecture documentation
Docs/docs/architecture/*
Adds subsystem overview with Mermaid flowchart and initialization order, boot sequence detailing data-disk staging/atomic rename, settings load with fallbacks, optional auth gating, logo/hardware-uptime rendering, and shell event loop; kernel components table (Scheduler, IO, Loader manifest/dynamic-import, Registry sys/apps.json); VFS layer method reference.
SDK reference documentation
Docs/docs/sdk/*
Adds SDK overview and package structure; Renderer constructor and full method reference (screen control, styling, box drawing, theme management, tuiro helpers); input API (get_key, Key constants, Pyodide web queue); stdlib I/O/render/utility function tables; VFS API with root auto-detection via PYCOMPUTER_DATA_DIR and path-resolution examples.
App development and distribution documentation
Docs/docs/apps/*
Adds app system overview and execution model; enumeration of built-in apps (calculator, notes, settings, snake, matrix, ide); building guide (manifest schema, main() entry point contract, local testing via SDK/pkg); CLI workflow (init/validate/run/test/build commands); packaging instructions (.pycapp ZIP format, build via pycomp build/pkg build/bundler API); and security/integrity (manifest validation, app name restrictions, path traversal prevention, HTTPS enforcement, SHA-256 verification).
Shell and pkg command reference
Docs/docs/shell/*
Adds shell overview (prompt behavior, cross-platform input sourcing, shlex.split parsing, command table) and per-command reference (help, exit, echo, ls, cat, edit, run, pkg, clear, cd, rm); pkg command reference documenting list, install (local/archive/URL/registry), remove, search, registry view/set, build subcommands with examples.
SDK module re-exports and testing utilities
pyComputerSDK/src/pycomputersdk/{async_utils.py, logging.py, net.py, pkg.py}, pyComputerSDK/src/pycomputersdk/testing.py, pyComputerSDK/src/pycomputersdk/__init__.py
Adds re-export modules (async_utils wrapping async_tools, logging wrapping logging functions, net wrapping HTTP, pkg wrapping Manifest/ManifestError/bundle); introduces testing utilities (MockRenderer tracking cursor/buffer and capturing output, MockInput with queued key consumption, assert_screen with unified-diff assertions); re-exports pyc_input from utils for standalone app development.
pycomp CLI implementation and command structure
pyComputerSDK/src/pycomputersdk/cli/main.py, pyComputerSDK/src/pycomputersdk/cli/commands/{init.py, build.py, validate.py, test.py, run.py}
Implements the pycomp CLI with argparse subcommand dispatch: init scaffolds app directories with manifest/main.py/test templates; build validates and bundles to .pycapp via bundler API; validate inspects manifest/entry fields; test runs pytest with sys.path setup; run loads/executes entrypoints with environment variable setup (PYCOMPUTER_DATA_DIR/ROOT_DIR), theme application, and exception handling (suppresses KeyboardInterrupt).
CLI boot resources and data files
pyComputerSDK/src/pycomputersdk/cli/root/boot/logo.txt, pyComputerSDK/src/pycomputersdk/cli/root/sys/{apps.json, motd.txt}
Adds ASCII art boot logo, empty sys/apps.json registry, and SDK mode MOTD welcome message.
Environment variable support for path overrides
pyComputer/pycomputer/fs/vfs.py, pyComputer/pycomputer/kernel/boot.py
Adds environment variable configuration: VFS.init checks PYCOMPUTER_DATA_DIR for early root assignment, _data_dir() reads PYCOMPUTER_DATA_DIR with fallback, _root_dir() reads PYCOMPUTER_ROOT_DIR with fallback, enabling flexible deployment/testing configurations.
Build backend migration and workspace configuration
pyComputerSDK/pyproject.toml, pyproject.toml
Migrates pyComputerSDK from uv_build to Hatchling: adds pytest/requests dependencies, exposes pycomp console script, configures sdist/wheel packaging with force-include of ../pyComputer into SDK distribution, updates workspace source to { workspace = true }, and adds root pyproject.toml with uv workspace members (pyComputer, pyComputerSDK).
CONTRIBUTING.md and build comment clarification
CONTRIBUTING.md, Demo/build.js
Adds CONTRIBUTING.md covering dev environment setup (editable install + app execution), code style (PEP 8, ruff, docstrings, error handling), testing/coverage, project layout, and web demo/SDK build/publish notes; updates Demo/build.js comment to clarify root-file placement at /root/.

Sequence Diagrams

Since the changes span documentation, tooling configuration, and CLI implementation without introducing a novel multi-component interactive flow, no sequence diagram is generated. The CLI commands are straightforward linear workflows (init → create files, build → validate → bundle, run → load → execute), and documentation is static content. A diagram would not add clarity beyond the layer summaries.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~12 minutes

Possibly related PRs

  • NellowTCS/pyComputer#6: Both PRs are tied to the same app packaging/installation path: the main PR's pycomputersdk CLI (cmd_build/cmd_run) calls into pycomputersdk.pkg.bundle (re-exporting pycomputer.pkg.bundler.bundle), which is introduced/reshaped in the retrieved "Bundling and Registry" PR.

Poem

🐇 Hop along the documentation trail,
From quickstart to kernel, none will fail!
The CLI builds apps with pycomp cheer,
SDK modules re-export far and near.
With MockRenderer, MockInput, and test so bright,
Developers now have docs and tooling just right! ✨

🚥 Pre-merge checks | ✅ 3 | ❌ 2

❌ Failed checks (1 warning, 1 inconclusive)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
Title check ❓ Inconclusive The title 'Docs and SDK Updates' is generic and vague, lacking specificity about which documentation or SDK changes are included. Provide a more specific title that describes the primary change, such as 'Add comprehensive documentation and SDK CLI tools' or 'Implement docs site and pycomp CLI for app development'.
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
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.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch docs-and-sdk-updates

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 and usage tips.

@coderabbitai coderabbitai 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.

Actionable comments posted: 10

🤖 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 `@Docs/docmd.config.js`:
- Around line 4-39: The logo.href property and the footer column links are using
page-relative URLs (like "./" and "./getting-started/quickstart") which resolve
incorrectly from nested documentation pages. Convert these to root-relative URLs
by replacing the "./" prefix with "/" so that the logo and footer navigation
work correctly from any page depth. This applies to the logo.href value and all
url properties within the footer.columns links array.
- Around line 134-138: The baseUrl in the editLink configuration object is
pointing to the repository root but needs to include the path to the docs source
tree. Update the baseUrl value to include the full path Docs/docs/ so that DocMD
generates correct edit links that point to the actual documentation source files
rather than resulting in 404 errors.

In `@Docs/docs/apps/building.md`:
- Around line 61-64: In the build instructions section, the checkout command
incorrectly specifies a nested directory path as `cd pyComputer/pyComputer`.
Remove the duplicate nested directory and change the command to simply `cd
pyComputer` to correctly navigate to the project root directory before running
the uv run python main.py command.

In `@Docs/docs/apps/builtin.md`:
- Around line 8-10: Remove the line-count specification `(1087 lines)` from the
IDE application description in the builtin.md documentation. This specific
number will become outdated as the codebase evolves and requires maintenance to
keep accurate. Keep the rest of the IDE description intact, which adequately
describes the functionality (full TUI code editor with file tree, toolbar,
syntax highlighting, and run output panel) without relying on a specific line
count that will quickly become stale.

In `@Docs/docs/apps/pycapp.md`:
- Around line 31-33: The bash command example showing the path to bundler.py
contains a duplicate directory name where `pycomputer` appears twice in the path
(pyComputer/pycomputer/pycomputer/pkg/bundler.py). Verify the correct
repository-relative path to the bundler.py file and update the example command
to use the correct single path without the duplication, ensuring readers can
actually execute the command successfully.
- Around line 51-56: The validation list in the documentation is overstating the
guarantees for all `pkg install` paths. The path-traversal and HTTPS checks only
apply when extracting a `.pycapp` archive or downloading from a URL, while plain
directory installs only validate the manifest and copy the tree without these
additional checks. Revise the documentation to clearly scope the listed
validations to `.pycapp` and URL-based installations, and either add a separate
note about the limited validations for plain directory installs or restructure
the section to distinguish between installation methods.

In `@Docs/docs/architecture/boot.md`:
- Around line 22-24: The authentication step documentation currently states "If
a password hash is configured" but the actual code checks
_settings.get("password") directly. Update the wording in the Step 3
authentication section to accurately reflect that the runtime gate checks for a
password setting (not specifically a hash) before requiring login, aligning the
documentation with the actual implementation logic.

In `@Docs/docs/architecture/index.md`:
- Around line 38-46: The initialization order documentation is incomplete and
missing critical setup steps that happen in kernel.main() before Kernel() is
constructed. Add two steps between ensure_data_dir() and the Kernel()
constructor: one for theme setup and one for the conditional _require_login()
call. These authentication and theme configuration steps must be documented in
the correct sequence since they occur before the Kernel object is instantiated,
ensuring the documentation accurately reflects the actual initialization flow.

In `@Docs/docs/getting-started/installation.md`:
- Around line 8-43: The prerequisites section mentions both uv and pip as valid
package managers ("uv (recommended) or pip"), but all the installation examples
below only show uv commands. Either narrow the prerequisites copy to only
mention uv since that is what the examples demonstrate, or add pip-equivalent
commands alongside each uv command in the Clone and Run section, Web Demo setup,
and SDK Installation section (such as providing pip install alternatives for the
SDK installation steps) so that the documentation is consistent and readers can
follow the examples regardless of their preferred package manager.

In `@Docs/docs/sdk/input.md`:
- Around line 32-47: The function keys section uses the notation Key.F1 - F4
which is ambiguous and reads like subtraction instead of clearly listing the
available members. Replace this line with explicit listings of each function key
member (Key.F1, Key.F2, Key.F3, Key.F4) on separate lines, each with their
corresponding escape code values, to match the formatting and clarity of the
other key entries in the documentation.
🪄 Autofix (Beta)

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: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: c61a2041-ccab-44a0-9f7d-7217f4c1adb2

📥 Commits

Reviewing files that changed from the base of the PR and between 1c4bdf5 and 1c7919a.

⛔ Files ignored due to path filters (1)
  • Docs/package-lock.json is excluded by !**/package-lock.json
📒 Files selected for processing (25)
  • CONTRIBUTING.md
  • Demo/build.js
  • Docs/.gitignore
  • Docs/docmd.config.js
  • Docs/docs/apps/building.md
  • Docs/docs/apps/builtin.md
  • Docs/docs/apps/index.md
  • Docs/docs/apps/pycapp.md
  • Docs/docs/architecture/boot.md
  • Docs/docs/architecture/index.md
  • Docs/docs/architecture/kernel.md
  • Docs/docs/architecture/vfs.md
  • Docs/docs/getting-started/concepts.md
  • Docs/docs/getting-started/installation.md
  • Docs/docs/getting-started/quickstart.md
  • Docs/docs/index.md
  • Docs/docs/sdk/index.md
  • Docs/docs/sdk/input.md
  • Docs/docs/sdk/renderer.md
  • Docs/docs/sdk/stdlib.md
  • Docs/docs/sdk/vfs.md
  • Docs/docs/shell/commands.md
  • Docs/docs/shell/index.md
  • Docs/docs/shell/pkg.md
  • Docs/package.json

Comment thread Docs/docmd.config.js Outdated
Comment thread Docs/docmd.config.js
Comment thread Docs/docs/apps/building.md
Comment thread Docs/docs/apps/builtin.md Outdated
Comment thread Docs/docs/apps/pycapp.md
Comment thread Docs/docs/apps/pycapp.md Outdated
Comment thread Docs/docs/architecture/boot.md Outdated
Comment thread Docs/docs/architecture/index.md Outdated
Comment thread Docs/docs/getting-started/installation.md
Comment thread Docs/docs/sdk/input.md
NellowTCS and others added 3 commits June 18, 2026 21:01
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

@coderabbitai coderabbitai 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.

Actionable comments posted: 11

🤖 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/pages.yml:
- Around line 15-17: In the actions/checkout@v4 action under the with section,
add the parameter persist-credentials set to false. This will disable credential
persistence in git config since the workflow only runs npm ci and npm run build
commands which do not require authenticated git operations, thereby reducing
token exposure risk.
- Line 15: The GitHub Actions workflow uses mutable version tags instead of
immutable commit SHAs, creating supply-chain vulnerability through tag
retargeting. Replace the mutable tags in the actions/checkout,
actions/setup-node, and peaceiris/actions-gh-pages action references with their
full 40-character commit SHAs as specified in the comment, including version
comments (e.g., # v4.2.2) for reference. This pins the workflow to specific
immutable commits and eliminates the risk of unexpected behavior changes from
tag retargeting.

In `@pyComputer/pycomputer/kernel/boot.py`:
- Around line 13-24: The environment variable overrides in both _data_dir() and
_root_dir() functions are returning raw env values without normalizing them to
absolute paths. This can cause path inconsistencies since relative paths depend
on the current working directory, while VFS.__init__ normalizes paths to
absolute paths. Fix this by wrapping the env variable returns with
os.path.abspath() to ensure all paths returned from these functions are absolute
paths, consistent with the default fallback paths.

In `@pyComputerSDK/pyproject.toml`:
- Around line 29-30: The wheel force-include configuration in the
`[tool.hatch.build.targets.wheel.force-include]` section is referencing a
non-existent source path `pycomputer`. Update the source path to use the correct
relative path `../pyComputer/pycomputer` (matching the existing
sdist.force-include configuration), while keeping the target path as
`pycomputer`. This ensures the wheel build correctly includes the pycomputer
package from its actual location in the repository structure.

In `@pyComputerSDK/src/pycomputersdk/cli/commands/init.py`:
- Line 39: The scaffold template in cmd_init creates a <app>/main.py file but
the import statement attempts to import from the {name} package namespace using
from {name} import main, which will fail. Fix the import statement in the
template to import directly from the main module instead, either by changing it
to from main import main or import main, so it correctly references the main.py
file that gets created when scaffolding the new project.
- Around line 70-72: Remove the unnecessary f-string prefixes from the three
print statements on lines 70-72. The strings "  pycomp validate .", "  pycomp
run .", and "  pycomp build ." do not contain any placeholder variables for
interpolation, so the f prefix is redundant. Change each print statement from
f"..." to just "..." to comply with the Ruff F541 rule.

In `@pyComputerSDK/src/pycomputersdk/cli/commands/run.py`:
- Around line 53-54: The exception handler at lines 53-54 catches both
KeyboardInterrupt and SystemExit together, which causes non-zero exit codes from
the app entrypoint to be swallowed and marked as successful runs. Remove
SystemExit from the tuple in the except clause so that only KeyboardInterrupt is
caught and passed, allowing SystemExit exceptions to propagate naturally and
preserve the app's original exit code. Apply this same fix to the other location
mentioned at line 61.
- Around line 18-20: The json.load() call when reading the manifest file at the
beginning of the run command has no error handling for malformed JSON. Wrap the
file opening and json.load() operation in a try-except block to catch
JSONDecodeError and other file-related exceptions, then return a clean CLI error
message to the user instead of letting the exception propagate and crash the
command.

In `@pyComputerSDK/src/pycomputersdk/cli/commands/test.py`:
- Around line 23-27: The sys.path.remove(app_dir) call in the finally block can
raise a ValueError if the path was already removed or mutated during test
execution, which masks the actual pytest result. Wrap the
sys.path.remove(app_dir) call in a try-except block that catches ValueError, or
guard it with a conditional check to verify app_dir exists in sys.path before
attempting removal, ensuring cleanup failures do not overshadow the test
execution results.

In `@pyComputerSDK/src/pycomputersdk/cli/commands/validate.py`:
- Line 31: Remove the unnecessary f-string prefix from the print statement on
line 31 that outputs "entry file: ok". Since this string contains no variable
placeholders or expressions within curly braces, the f-string prefix is
redundant and should be replaced with a regular string literal by changing f" 
entry file:  ok" to "  entry file:  ok".

In `@pyComputerSDK/src/pycomputersdk/testing.py`:
- Around line 100-101: The loop variable `l` in the list comprehensions violates
Ruff E741 and reduces code readability since lowercase L can be confused with
numbers or uppercase I. Rename the `l` variable to a more descriptive name like
`line` in both list comprehensions that operate on expected_lines and lines to
improve clarity and comply with linting standards.
🪄 Autofix (Beta)

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: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: cc435452-7a93-4ddb-be30-d148aac08681

📥 Commits

Reviewing files that changed from the base of the PR and between 1c7919a and 54d9c92.

⛔ Files ignored due to path filters (2)
  • pyComputerSDK/uv.lock is excluded by !**/*.lock
  • uv.lock is excluded by !**/*.lock
📒 Files selected for processing (36)
  • .github/workflows/pages.yml
  • Docs/docmd.config.js
  • Docs/docs/apps/building.md
  • Docs/docs/apps/builtin.md
  • Docs/docs/apps/pycapp.md
  • Docs/docs/architecture/boot.md
  • Docs/docs/architecture/index.md
  • Docs/docs/architecture/vfs.md
  • Docs/docs/getting-started/concepts.md
  • Docs/docs/getting-started/installation.md
  • Docs/docs/getting-started/quickstart.md
  • Docs/docs/sdk/index.md
  • Docs/docs/sdk/input.md
  • Docs/docs/sdk/vfs.md
  • pyComputer/pycomputer/fs/vfs.py
  • pyComputer/pycomputer/kernel/boot.py
  • pyComputerSDK/pyproject.toml
  • pyComputerSDK/src/pycomputersdk/__init__.py
  • pyComputerSDK/src/pycomputersdk/async_utils.py
  • pyComputerSDK/src/pycomputersdk/cli/__init__.py
  • pyComputerSDK/src/pycomputersdk/cli/commands/__init__.py
  • pyComputerSDK/src/pycomputersdk/cli/commands/build.py
  • pyComputerSDK/src/pycomputersdk/cli/commands/init.py
  • pyComputerSDK/src/pycomputersdk/cli/commands/run.py
  • pyComputerSDK/src/pycomputersdk/cli/commands/test.py
  • pyComputerSDK/src/pycomputersdk/cli/commands/validate.py
  • pyComputerSDK/src/pycomputersdk/cli/main.py
  • pyComputerSDK/src/pycomputersdk/cli/root/boot/logo.txt
  • pyComputerSDK/src/pycomputersdk/cli/root/sys/apps.json
  • pyComputerSDK/src/pycomputersdk/cli/root/sys/motd.txt
  • pyComputerSDK/src/pycomputersdk/cli/root/usr/apps/.gitkeep
  • pyComputerSDK/src/pycomputersdk/logging.py
  • pyComputerSDK/src/pycomputersdk/net.py
  • pyComputerSDK/src/pycomputersdk/pkg.py
  • pyComputerSDK/src/pycomputersdk/testing.py
  • pyproject.toml
✅ Files skipped from review due to trivial changes (16)
  • pyComputerSDK/src/pycomputersdk/cli/root/sys/motd.txt
  • pyComputerSDK/src/pycomputersdk/cli/root/boot/logo.txt
  • pyComputerSDK/src/pycomputersdk/cli/root/sys/apps.json
  • Docs/docs/sdk/input.md
  • Docs/docs/apps/builtin.md
  • pyComputerSDK/src/pycomputersdk/net.py
  • pyComputerSDK/src/pycomputersdk/pkg.py
  • Docs/docs/architecture/boot.md
  • Docs/docs/getting-started/quickstart.md
  • Docs/docs/apps/pycapp.md
  • Docs/docs/architecture/index.md
  • Docs/docs/apps/building.md
  • Docs/docs/getting-started/installation.md
  • Docs/docs/sdk/vfs.md
  • Docs/docs/sdk/index.md
  • Docs/docs/architecture/vfs.md
🚧 Files skipped from review as they are similar to previous changes (2)
  • Docs/docs/getting-started/concepts.md
  • Docs/docmd.config.js

Comment thread .github/workflows/pages.yml
Comment thread .github/workflows/pages.yml
Comment thread pyComputer/pycomputer/kernel/boot.py Outdated
Comment thread pyComputerSDK/pyproject.toml
Comment thread pyComputerSDK/src/pycomputersdk/cli/commands/init.py Outdated
Comment thread pyComputerSDK/src/pycomputersdk/cli/commands/run.py Outdated
Comment thread pyComputerSDK/src/pycomputersdk/cli/commands/run.py Outdated
Comment thread pyComputerSDK/src/pycomputersdk/cli/commands/test.py Outdated
Comment thread pyComputerSDK/src/pycomputersdk/cli/commands/validate.py Outdated
Comment thread pyComputerSDK/src/pycomputersdk/testing.py Outdated
@NellowTCS
NellowTCS merged commit 0d7cd5f into main Jun 19, 2026
5 checks passed
@NellowTCS
NellowTCS deleted the docs-and-sdk-updates branch June 19, 2026 04:20
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.

1 participant