Additional Codex Tools
Additional Codex Tools
Section titled “Additional Codex Tools”The Codex Core SDK (@fractary/codex) is available now on npm. The following additional tools and integrations are in active development:
CLI Integration
Section titled “CLI Integration”Integration with the unified Fractary CLI for command-line usage.
Planned Commands
Section titled “Planned Commands”# Initialize codex in a repositoryfractary codex init --org fractary
# Validate metadata in markdown filesfractary codex validate docs/
# Test sync rulesfractary codex test-sync docs/api-guide.md --target api-gateway
# Watch and sync automaticallyfractary codex sync --watchGitHub Actions Integration
Section titled “GitHub Actions Integration”Bundle: forge-bundle-codex-github-core
Automated workflows for syncing documentation across GitHub repositories.
Features
Section titled “Features”- Automated sync on push/PR
- Multi-repo distribution
- Conflict detection and resolution
- Sync status reporting
Claude Code Agents
Section titled “Claude Code Agents”Bundle: forge-bundle-codex-claude-agents
AI agents for managing Codex metadata and sync rules.
Planned Agents
Section titled “Planned Agents”- Metadata Manager - Add and update frontmatter
- Sync Validator - Check sync configuration
- Pattern Tester - Test glob patterns
- Documentation Organizer - Organize and categorize docs
Additional Integrations
Section titled “Additional Integrations”GitLab CI
Section titled “GitLab CI”Support for GitLab pipelines and repository management.
S3 Storage
Section titled “S3 Storage”Sync documentation to S3 buckets for static hosting.
MCP Server
Section titled “MCP Server”Model Context Protocol server for AI agent integration.
Web UI
Section titled “Web UI”Browser-based interface for:
- Visualizing sync rules
- Testing patterns
- Managing metadata
- Viewing sync history
Using the SDK Now
Section titled “Using the SDK Now”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 nowconst config = loadConfig({ organizationSlug: 'your-org' })const metadata = parseMetadata(fileContent)const shouldSync = shouldSyncToRepo({...})Stay Updated
Section titled “Stay Updated”- ⭐ Star the repo: github.com/fractary/codex
- 👀 Watch for releases
- 💬 Join discussions: GitHub Discussions
- 📦 Install SDK:
npm install @fractary/codex
Contributing
Section titled “Contributing”Interested in contributing? Check out: