# Where to Find the Roadmap for OpenSEO: Complete Guide to Project Development Plans

> Find the OpenSEO roadmap in the GitHub repository. Discover project development plans and key features for this powerful open-source SEO tool to enhance your online presence.

- Repository: [Every App/open-seo](https://github.com/every-app/open-seo)
- Tags: how-to-guide
- Published: 2026-07-29

---

**The OpenSEO roadmap is located in [`docs/site-audit-pm-research.md`](https://github.com/every-app/open-seo/blob/main/docs/site-audit-pm-research.md) under the "Recommended roadmap" section, with additional context available in [`web/src/lib/feature-pages.ts`](https://github.com/every-app/open-seo/blob/main/web/src/lib/feature-pages.ts).**

The **every-app/open-seo** repository maintains its development roadmap and future milestones within its documentation structure. Whether you are contributing to the project, evaluating its future direction, or integrating its features into your workflow, knowing exactly where to find the roadmap for OpenSEO ensures you stay informed about upcoming capabilities like JS rendering and content planning features.

## Primary Location: Documentation File

The definitive roadmap resides in **[`docs/site-audit-pm-research.md`](https://github.com/every-app/open-seo/blob/main/docs/site-audit-pm-research.md)**. Within this file, section **"5. Recommended roadmap"** outlines current priorities and planned milestones for the project.

This markdown file contains specific technical planning details, including:
- Implementation timelines for JavaScript rendering capabilities
- Feature milestones for site audit functionality
- Product management research findings that drive development priorities

You can view this file directly in the repository at [`docs/site-audit-pm-research.md`](https://github.com/every-app/open-seo/blob/main/docs/site-audit-pm-research.md) on the main branch.

## Secondary Reference: Feature Page Definitions

A conceptual reference to roadmap functionality appears in **[`web/src/lib/feature-pages.ts`](https://github.com/every-app/open-seo/blob/main/web/src/lib/feature-pages.ts)**. This TypeScript file drives the UI-side feature definitions and includes the description:

> "Build a content roadmap from real keyword data."

This indicates where roadmap concepts translate into user-facing features within the OpenSEO application. The file maps feature descriptions to their implementation details, showing how the strategic roadmap connects to actual product capabilities.

## How to Access the Roadmap Programmatically

If you need to consume the roadmap content programmatically—such as displaying it in a dashboard or documentation site—you can fetch it directly from the repository.

### Fetching the Roadmap Markdown

Use the raw GitHub URL to retrieve the roadmap section at runtime:

```typescript
import fetch from 'node-fetch';

async function getRoadmap() {
  const url = 'https://raw.githubusercontent.com/every-app/open-seo/main/docs/site-audit-pm-research.md';
  const response = await fetch(url);
  const markdown = await response.text();

  // Extract the "Recommended roadmap" section
  const roadmap = markdown.split('## 5. Recommended roadmap')[1] ?? '';

  return roadmap.trim();
}

// Usage
getRoadmap().then(console.log);

```

### Reading Feature Definitions Locally

To access the feature-page metadata that references roadmap functionality:

```typescript
import { readFile } from 'fs/promises';
import path from 'path';

async function getFeaturePages() {
  const filePath = path.resolve(
    process.cwd(),
    'web/src/lib/feature-pages.ts'
  );
  const content = await readFile(filePath, 'utf8');
  return content;
}

// Usage
getFeaturePages().then(console.log);

```

## Summary

- **Primary roadmap file:** [`docs/site-audit-pm-research.md`](https://github.com/every-app/open-seo/blob/main/docs/site-audit-pm-research.md) contains the "Recommended roadmap" section with milestone details.
- **Feature implementation:** [`web/src/lib/feature-pages.ts`](https://github.com/every-app/open-seo/blob/main/web/src/lib/feature-pages.ts) defines how roadmap concepts appear in the UI.
- **Key features:** JS rendering implementation and content roadmap building from keyword data represent major upcoming milestones.
- **Access methods:** Raw file fetching or local file system reads depending on your integration needs.

## Frequently Asked Questions

### What specific features are planned in the OpenSEO roadmap?

According to the documentation in [`docs/site-audit-pm-research.md`](https://github.com/every-app/open-seo/blob/main/docs/site-audit-pm-research.md), planned features include JavaScript rendering capabilities and advanced site audit functionality. The roadmap outlines technical milestones for implementing these capabilities based on product management research.

### Can I contribute to the OpenSEO roadmap?

The roadmap lives in standard markdown and TypeScript files within the repository, so you can submit pull requests against [`docs/site-audit-pm-research.md`](https://github.com/every-app/open-seo/blob/main/docs/site-audit-pm-research.md) or [`web/src/lib/feature-pages.ts`](https://github.com/every-app/open-seo/blob/main/web/src/lib/feature-pages.ts). Changes to the roadmap require alignment with the project maintainers' strategic direction as outlined in the repository's contribution guidelines.

### How often is the OpenSEO roadmap updated?

As an open-source project, the roadmap updates occur through standard Git workflows when maintainers merge changes to the main branch. The files [`docs/site-audit-pm-research.md`](https://github.com/every-app/open-seo/blob/main/docs/site-audit-pm-research.md) and [`web/src/lib/feature-pages.ts`](https://github.com/every-app/open-seo/blob/main/web/src/lib/feature-pages.ts) reflect the current state of planning and are version-controlled alongside the codebase.