Skip to content

Conversation

recursionlab
Copy link
Owner

@recursionlab recursionlab commented Sep 17, 2025

This PR seeds the site with:\n\n- Revised About page reflecting Recursion Lab’s focus\n- New Projects page with four prototype ideas\n- Four draft blog posts under _drafts/ (symbolic recursion, recursive reasoning in LLMs, mind–recursive systems interface, case study)\n- README note on using _drafts and serving with --drafts\n\nBuild: Verified locally with bundle exec jekyll build (non-blocking Sass deprecations remain from vendor files).\n\nYou can replace or expand these sections with your own content at any time.\n

Summary by Sourcery

Seed the site with core content pages, draft posts, and a welcome post, improve developer documentation for local and draft workflows, and introduce a CI workflow for automated Jekyll builds.

New Features:

  • Launch an About page outlining Recursion Lab’s focus and research areas
  • Introduce a Projects page showcasing four prototype ideas on recursive systems
  • Seed four draft blog posts under _drafts for symbolic recursion, case study, interfaces, and LLM reasoning
  • Add an initial welcome post in _posts to guide future content contributions

CI:

  • Add a GitHub Actions workflow to build the Jekyll site and upload artifacts

Documentation:

  • Expand README with local development, posting, and draft preview instructions
  • Add ARCHITECTURE.md with principles and a checklist for module design and integration

Copy link

sourcery-ai bot commented Sep 17, 2025

Reviewer's Guide

This PR populates the Jekyll site with foundational content, enhances developer documentation for local and draft workflows, and adds automation and architecture guidance. Changes are implemented by adding and updating markdown files for pages and posts, extending the README, and introducing new workflow/configuration files.

Class diagram for new and updated content types (Pages, Posts, Drafts)

classDiagram
  class Page {
    +title: string
    +layout: string
    +permalink: string
    +content: markdown
  }
  class Post {
    +title: string
    +date: datetime
    +author: string
    +tags: list
    +content: markdown
  }
  class Draft {
    +title: string
    +author: string
    +tags: list
    +content: markdown
  }
  Page <|-- AboutPage
  Page <|-- ProjectsPage
  Post <|-- WelcomePost
  Draft <|-- SymbolicRecursionDraft
  Draft <|-- RecursiveReasoningLLMDraft
  Draft <|-- MindRecursiveSystemsDraft
  Draft <|-- CaseStudyEmergentRecursionDraft
  AboutPage : updated content
  ProjectsPage : new page
  WelcomePost : new post
  SymbolicRecursionDraft : new draft
  RecursiveReasoningLLMDraft : new draft
  MindRecursiveSystemsDraft : new draft
  CaseStudyEmergentRecursionDraft : new draft
Loading

File-Level Changes

Change Details Files
Seeded initial site content
  • Revised About page with Recursion Lab focus
  • Added Projects page with four prototype ideas
  • Added welcome post in _posts directory
  • Added four draft posts in _drafts directory
about.md
_pages/projects.md
_posts/2025-09-14-welcome.md
_drafts/what-is-symbolic-recursion.md
_drafts/case-study-emergent-recursive-cognition.md
_drafts/interface-mind-recursive-systems.md
_drafts/recursive-reasoning-in-llms.md
Extended README with local dev and draft preview instructions
  • Added instructions for installing gems and serving site locally
  • Documented draft content workflow and serving with --drafts option
  • Referenced existing pagination QA snippet
README.md
Added CI workflow for automated Jekyll builds
  • Created GitHub Actions workflow to build and upload site artifact on PRs and pushes to main
.github/workflows/jekyll-build.yml
Introduced architecture guidance document
  • Added ARCHITECTURE.md with principles, checklists, and examples for module design
ARCHITECTURE.md

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

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

Hey there - I've reviewed your changes and they look great!

Blocking issues:

  • An action sourced from a third-party repository on GitHub is not pinned to a full length commit SHA. Pinning an action to a full length commit SHA is currently the only way to use an action as an immutable release. Pinning to a particular SHA helps mitigate the risk of a bad actor adding a backdoor to the action's repository, as they would need to generate a SHA-1 collision for a valid Git object payload. (link)
Prompt for AI Agents
Please address the comments from this code review:

## Individual Comments

### Comment 1
<location> `.github/workflows/jekyll-build.yml:32-33` </location>
<code_context>
+    - name: Upload site (artifact)
+      uses: actions/upload-artifact@v4
+      with:
+        name: site
+        path: _site
</code_context>

<issue_to_address>
**suggestion:** Consider cleaning up the _site directory before building to avoid stale artifacts.

This helps ensure only fresh build files are uploaded, reducing the risk of outdated content in the artifact.
</issue_to_address>

### Comment 2
<location> `.github/workflows/jekyll-build.yml:16` </location>
<code_context>
      uses: ruby/setup-ruby@v1
</code_context>

<issue_to_address>
**security (yaml.github-actions.security.third-party-action-not-pinned-to-commit-sha):** An action sourced from a third-party repository on GitHub is not pinned to a full length commit SHA. Pinning an action to a full length commit SHA is currently the only way to use an action as an immutable release. Pinning to a particular SHA helps mitigate the risk of a bad actor adding a backdoor to the action's repository, as they would need to generate a SHA-1 collision for a valid Git object payload.

*Source: opengrep*
</issue_to_address>

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

Comment on lines +32 to +33
name: site
path: _site
Copy link

Choose a reason for hiding this comment

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

suggestion: Consider cleaning up the _site directory before building to avoid stale artifacts.

This helps ensure only fresh build files are uploaded, reducing the risk of outdated content in the artifact.

- uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
Copy link

Choose a reason for hiding this comment

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

security (yaml.github-actions.security.third-party-action-not-pinned-to-commit-sha): An action sourced from a third-party repository on GitHub is not pinned to a full length commit SHA. Pinning an action to a full length commit SHA is currently the only way to use an action as an immutable release. Pinning to a particular SHA helps mitigate the risk of a bad actor adding a backdoor to the action's repository, as they would need to generate a SHA-1 collision for a valid Git object payload.

Source: opengrep

@recursionlab recursionlab merged commit ecb92e9 into main Sep 17, 2025
1 of 2 checks passed
@recursionlab recursionlab deleted the content/initial-pages branch September 17, 2025 16:51
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