Skip to content

Additional Codex Tools

The Codex Core SDK (@fractary/codex) is available now on npm. The following additional tools and integrations are in active development:

Integration with the unified Fractary CLI for command-line usage.

Terminal window
# Initialize codex in a repository
fractary codex init --org fractary
# Validate metadata in markdown files
fractary codex validate docs/
# Test sync rules
fractary codex test-sync docs/api-guide.md --target api-gateway
# Watch and sync automatically
fractary codex sync --watch

Bundle: forge-bundle-codex-github-core

Automated workflows for syncing documentation across GitHub repositories.

  • Automated sync on push/PR
  • Multi-repo distribution
  • Conflict detection and resolution
  • Sync status reporting

Bundle: forge-bundle-codex-claude-agents

AI agents for managing Codex metadata and sync rules.

  • Metadata Manager - Add and update frontmatter
  • Sync Validator - Check sync configuration
  • Pattern Tester - Test glob patterns
  • Documentation Organizer - Organize and categorize docs

Support for GitLab pipelines and repository management.

Sync documentation to S3 buckets for static hosting.

Model Context Protocol server for AI agent integration.

Browser-based interface for:

  • Visualizing sync rules
  • Testing patterns
  • Managing metadata
  • Viewing sync history

While the additional tools are in development, you can use the Codex SDK directly:

import { parseMetadata, shouldSyncToRepo, loadConfig } from '@fractary/codex'
// Full SDK functionality is available now
const config = loadConfig({ organizationSlug: 'your-org' })
const metadata = parseMetadata(fileContent)
const shouldSync = shouldSyncToRepo({...})

Interested in contributing? Check out: