Claude의 '파일 기반 계획' 기술이 20억 달러 규모 Manus 워크플로우 아키텍처를 어떻게 드러내는가

GitHub April 2026
⭐ 19257📈 +2701
Source: GitHubClaude CodeAnthropicArchive: April 2026
20억 달러 규모의 Manus 인수 배후에 있는 계획 워크플로우를 구현한 GitHub 프로젝트가 19,000개 이상의 스타를 받으며, 엘리트 AI 협업의 핵심 아키텍처를 드러냈습니다. Claude Code의 '파일 기반 계획' 기술은 지속적인 마크다운 계획이 어떻게 추적 가능하고 반복적인 AI-를 만드는지 보여줍니다.
The article body is currently shown in English by default. You can generate the full version in this language on demand.

The othmanadi/planning-with-files repository represents a significant moment in the democratization of elite AI workflow patterns. As a Claude Code skill, it implements what industry insiders recognize as the core planning architecture behind Manus, the AI-native project management platform whose acquisition valued the underlying workflow at approximately $2 billion. The project enables users to create persistent, version-controlled planning documents in markdown format that Claude can read, analyze, and iteratively update, creating a collaborative planning loop between human and AI.

Technically, the skill operates by establishing a standardized markdown template with specific sections for objectives, constraints, current plan, execution status, and retrospective analysis. When activated within Claude Code, the AI can parse this document, understand the planning context, suggest modifications, track progress against goals, and maintain a complete audit trail of decision-making rationale. This transforms ephemeral AI conversations into durable, structured planning artifacts.

The project's explosive growth—gaining over 2,700 stars in a single day—signals strong developer interest in replicating high-value AI collaboration patterns that were previously proprietary. While the implementation is specifically tuned for Claude's code interpretation capabilities, the underlying pattern of persistent, structured planning documents represents a broader shift toward AI systems that maintain context across sessions and contribute to long-term project evolution rather than providing one-off responses.

This open-source exposure of a billion-dollar workflow raises fundamental questions about the future of AI tooling: whether core interaction patterns will become commoditized, how much value resides in workflow architecture versus model capabilities, and whether the next generation of AI applications will be built around similar persistent document paradigms.

Technical Deep Dive

The planning-with-files skill implements what might be termed the "persistent planning document" architecture. At its core is a markdown file with a rigorously defined structure that serves as both the planning artifact and the communication interface between human and AI. The technical implementation reveals several sophisticated design choices:

Document Structure & State Management: The markdown template is divided into distinct semantic sections: `# Objective`, `# Constraints & Context`, `# Current Plan`, `# Execution Status`, and `# Retrospective`. Each section has specific formatting rules that Claude's parser recognizes. The `Current Plan` section typically uses nested checkboxes (`- [ ]` and `- [x]`) to represent tasks and subtasks, creating a machine-readable task tree. The system maintains state through the combination of checkbox completion status and timestamped log entries in the `Execution Status` section.

Claude Code Integration Mechanics: The skill leverages Claude's unique code interpretation capabilities, particularly its ability to read, analyze, and write to files within a workspace. Unlike API-based approaches that might use vector databases or external state management, this implementation uses the file system itself as the persistence layer. When Claude processes a planning document, it performs several operations: semantic parsing of the existing plan, dependency analysis between tasks, progress calculation against objectives, and generation of suggested modifications with clear rationale.

Version Control & Audit Trail: A key innovation is the use of markdown's native formatting to create an implicit version history. Each planning session adds timestamped entries under execution status, creating a linear audit trail. The system encourages committing the planning document to Git after significant updates, enabling proper version control. This addresses one of the fundamental limitations of chat-based AI interactions—the lack of persistent, versioned context.

Comparison with Alternative Planning Architectures:

| Architecture | Persistence Method | Audit Trail | Human Readability | AI Parseability |
|---|---|---|---|---|
| Planning-with-Files | Markdown files in FS | Native via timestamps | Excellent | High (Claude-specific) |
| Chat Memory | Vector embeddings | Limited | Poor | Variable |
| External DB | SQL/NoSQL database | Custom implementation | Poor | Requires API |
| Proprietary (Manus) | Custom document store | Comprehensive | Good | Optimized |

Data Takeaway: The markdown-file approach offers superior human readability and simpler persistence compared to database or embedding-based systems, but trades off query efficiency and requires specific AI parsing capabilities that may not generalize across models.

Open-Source Ecosystem Context: While planning-with-files is specifically designed for Claude, it exists within a broader ecosystem of AI planning tools. The `langchain-ai/langchain` repository includes planning modules, though they typically rely on more complex agent architectures rather than persistent documents. The `microsoft/autogen` framework offers multi-agent planning with code execution but lacks the simple document-centric approach. The `continuedev/continue` editor plugin shows how planning can integrate into development workflows, though with less emphasis on persistent artifact creation.

Key Players & Case Studies

Anthropic's Strategic Positioning: Claude's code interpretation capability, launched in mid-2023, created the technical foundation for skills like planning-with-files. Unlike OpenAI's ChatGPT which initially focused on chat interfaces, Anthropic invested early in making Claude interact with entire codebases and file systems. This positioned Claude as particularly suited for complex, multi-step planning tasks that require context from existing artifacts. Dario Amodei, Anthropic's CEO, has emphasized building "AI systems that can help with real work," with planning being a cornerstone use case.

The Manus Acquisition Blueprint: While specific acquisition details remain confidential, industry analysis suggests the $2 billion valuation reflected several factors: the proprietary planning workflow architecture, demonstrated enterprise adoption, and the potential to scale AI-native project management. Manus reportedly reduced planning cycles by 40-60% for technical teams by implementing persistent AI planning documents similar to what planning-with-files demonstrates. The acquisition validated that workflow architecture—not just model capabilities—commands premium valuation.

Competitive Landscape in AI Planning:

| Company/Product | Planning Approach | Persistence Method | Target Market | Pricing Model |
|---|---|---|---|---|
| Claude + planning-with-files | Document-centric | Markdown files | Developers/Teams | Claude API usage |
| GitHub Copilot Workspace | Code-centric planning | Project context | Software developers | Subscription |
| Cursor IDE | Editor-integrated | Workspace state | Individual developers | Freemium |
| Replit AI | Cloud workspace | Project files | Education/Prototyping | Usage-based |
| Custom enterprise solutions | Various | Proprietary databases | Large organizations | Enterprise contracts |

Data Takeaway: The planning space is fragmenting between code-focused tools (GitHub, Cursor), general AI assistants (Claude, ChatGPT), and specialized planning interfaces. Document-centric approaches like planning-with-files occupy a middle ground between flexibility and structure.

Notable Research Contributions: The planning-with-files pattern draws from several research threads. The "Chain of Thought" prompting research from Google Brain demonstrated that breaking problems into steps improves reasoning. The "ReAct: Reasoning + Acting" framework showed how interleaving reasoning traces with actions creates more reliable agents. Planning-with-files extends these ideas by making the reasoning trace persistent and editable. Researchers like Jason Wei at OpenAI and Percy Liang at Stanford's Center for Research on Foundation Models have emphasized the importance of evaluation frameworks for planning systems—something the retrospective section in planning-with-files implicitly addresses.

Industry Impact & Market Dynamics

The open-source release of a billion-dollar workflow pattern represents a potential inflection point in AI application development. Several dynamics are at play:

Democratization vs. Commoditization: By exposing the Manus-style workflow, planning-with-files potentially commoditizes what was a proprietary advantage. This follows a pattern seen in web development (React democratizing Facebook's UI patterns) and DevOps (Kubernetes democratizing Google's orchestration). The immediate effect is lowering barriers to entry for AI planning tools, but the long-term question is whether sustainable businesses can be built on open workflow patterns or if value will concentrate at the model layer.

Market Size and Growth Projections:

| Segment | 2024 Market Size | 2027 Projection | CAGR | Key Drivers |
|---|---|---|---|---|
| AI-assisted project management | $850M | $3.2B | 55% | Productivity gains, remote work |
| Developer AI tools | $2.1B | $8.7B | 60% | Code completion, planning, review |
| Enterprise AI workflow platforms | $4.3B | $18.5B | 62% | Process automation, decision support |
| Total addressable market | $7.25B | $30.4B | 61% | Combined segments |

Data Takeaway: The AI planning and workflow automation market is experiencing explosive growth exceeding 60% CAGR, with planning-with-files positioned at the intersection of developer tools and project management—two high-growth segments.

Business Model Implications: The planning-with-files skill itself is free and open-source, but it drives usage of Claude's paid API. This represents an emerging business model pattern: open-source workflow architectures that monetize through underlying AI model usage. Anthropic's strategy appears to be cultivating an ecosystem of skills and workflows that lock users into Claude's unique capabilities, particularly its code interpretation. This creates a potential moat: even if competitors replicate the workflow pattern, they may not match Claude's specific ability to parse and manipulate complex markdown planning documents.

Adoption Curve Analysis: The project's viral growth—19,000+ stars with daily gains in the thousands—suggests it has crossed into early majority adoption within the developer community. The typical adoption pattern for such tools shows: Month 1-2: Early adopters and experimenters; Month 3-4: Integration into team workflows; Month 5-6: Emergence of best practices and extensions; Month 7+: Potential fragmentation or standardization. Planning-with-files appears to be in the Month 3-4 phase, with teams beginning to standardize around its patterns.

Competitive Response Patterns: Expect several responses from competitors: 1) OpenAI may enhance ChatGPT's file system interactions to support similar workflows; 2) Startups may build commercial products around the open-source pattern with additional features; 3) Existing project management tools (Asana, Jira, Linear) may integrate AI planning features that either adopt or deliberately differentiate from the markdown document approach.

Risks, Limitations & Open Questions

Model Dependency Risk: The most significant limitation is the skill's deep dependency on Claude's specific capabilities. The parsing logic, code interpretation behavior, and planning suggestions are optimized for Claude's current version. If Anthropic changes Claude's behavior or pricing, or if Claude falls behind competitors on planning capabilities, the entire workflow becomes less effective. This creates vendor lock-in at the workflow architecture level—a potentially more entrenched form of dependency than API-level lock-in.

Scalability Constraints: The markdown-file approach faces inherent scalability limits. As planning documents grow beyond a few thousand lines, parsing and manipulation become slower. Complex projects with hundreds of interdependent tasks may require database-backed systems rather than flat files. The current implementation works best for medium-complexity projects (10-100 tasks) rather than enterprise-scale initiatives.

Security and Compliance Gaps: Persistent planning documents containing sensitive project details—timelines, resource allocations, technical approaches—create new security considerations. Unlike chat histories that might be ephemeral or encrypted in transit, these markdown files exist in potentially unsecured locations. For regulated industries (healthcare, finance, defense), the audit trail features, while better than nothing, may not meet strict compliance requirements for decision documentation.

Open Technical Questions: Several technical challenges remain unresolved: 1) How to handle merge conflicts when multiple team members edit planning documents simultaneously; 2) How to integrate planning documents with other project management systems (GitHub Issues, Jira tickets); 3) How to version control not just the document but the AI's reasoning about why changes were made; 4) How to quantify planning quality improvements attributable to the system.

Ethical and Workforce Considerations: As AI planning systems become more capable, they raise questions about deskilling. If junior team members rely entirely on AI-generated plans, do they develop their own planning capabilities? There's also transparency risk: when plans are co-created with AI, responsibility attribution becomes complex. If an AI-suggested plan leads to project failure, who is accountable—the human who approved it or the AI that generated it?

AINews Verdict & Predictions

Editorial Judgment: The planning-with-files project represents a pivotal moment in AI application development—the open-sourcing of a billion-dollar workflow pattern. Its significance extends beyond the specific implementation to what it reveals about the future of AI tools: persistent, structured documents will likely become the primary interface for complex AI-human collaboration, replacing both ephemeral chats and rigid traditional software interfaces. The project successfully demonstrates that much of the value in elite AI applications resides not in proprietary algorithms but in thoughtfully designed interaction patterns that can be replicated and extended by the community.

Specific Predictions:

1. Within 6 months: We'll see at least three venture-backed startups ($5M+ seed rounds) building commercial products directly extending the planning-with-files pattern, focusing on specific verticals like software development, content production, or research planning.

2. Within 12 months: Anthropic will release official "Claude Planning Skills" as a productized version of this pattern, potentially incorporating learnings from the open-source implementation but with enterprise features like access controls, compliance logging, and integration APIs.

3. Within 18 months: The markdown planning document will become a standard interchange format between different AI systems, similar to how Markdown became standard for documentation. We'll see tools that can convert between planning markdown and other formats (Jira, Asana, GitHub Projects).

4. Within 24 months: Planning quality metrics will emerge as a key benchmarking category for AI models, alongside traditional measures like coding ability or reasoning scores. Models will be evaluated not just on whether they can create a plan, but on the executability and success rate of plans they co-create with humans.

What to Watch Next:

- Claude's next code interpretation updates: Watch for enhancements specifically around planning document manipulation, such as better merge conflict resolution or integration with version control systems.
- Competitor responses: Monitor whether OpenAI releases similar file-based planning capabilities for ChatGPT, potentially using a different document format (perhaps JSON-based rather than markdown).
- Enterprise adoption patterns: Track which companies begin standardizing on this workflow and whether they encounter scaling or compliance issues that drive the next evolution of the pattern.
- Academic research: Look for papers quantifying the productivity impact of persistent AI planning versus traditional or chat-based approaches, which will validate or challenge the underlying premise.

Final Assessment: The planning-with-files skill is more than just another GitHub project—it's a blueprint for the next generation of AI tools. Its viral adoption signals strong market demand for structured, persistent AI collaboration that goes beyond conversational interfaces. While technical limitations exist, the core insight—that AI planning should create durable, editable artifacts rather than ephemeral suggestions—is fundamentally correct and will influence AI tool design for years to come. The open-source nature ensures rapid iteration and adaptation across use cases, potentially accelerating the entire field's development. Companies ignoring this shift toward persistent AI planning documents risk being outpaced by competitors who leverage these patterns to achieve faster, more reliable planning cycles.

More from GitHub

Trigger.dev, 기업용 AI 에이전트 오케스트레이션의 오픈소스 중추로 부상Trigger.dev is positioning itself as the essential infrastructure layer for the burgeoning field of AI agent development시맨틱 라우터: 다가오는 혼합 모델 AI 시대의 지능형 교통 경찰Semantic Router is an open-source project positioning itself as the intelligent dispatch layer for the increasingly fragOpenBMB의 BMTrain, 효율적인 대규모 모델 학습에서 DeepSpeed의 지배적 위치에 도전The OpenBMB consortium's BMTrain framework has emerged as a compelling open-source alternative for efficient large modelOpen source hub886 indexed articles from GitHub

Related topics

Claude Code110 related articlesAnthropic113 related articles

Archive

April 20261952 published articles

Further Reading

Claude Code 궁극의 가이드: 커뮤니티 문서가 AI 프로그래밍 채택을 어떻게 형성하는가Claude Code에 대한 포괄적인 커뮤니티 가이드는 빠르게 주목을 받아 짧은 시간에 GitHub 스타 3,500개 이상을 모았습니다. 이 저장소는 개발자가 AI 프로그래밍 어시스턴트를 학습하고 채택하는 방식의 중ClaudeCodeUI, AI 프로그래밍의 모바일 격차 해소하며 데스크톱 우선 개발 패러다임에 도전ClaudeCodeUI는 강력한 AI 코딩 어시스턴트와 증가하는 모바일 개발 워크플로우 수요 사이의 중요한 가교 역할을 하고 있습니다. 이 프로젝트는 CloudCLI를 통해 원격 Claude Code 세션을 관리하는Karpathy의 CLAUDE.md가 모델 훈련 없이 AI 코딩을 혁신하는 방법단일 마크다운 파일을 포함한 GitHub 저장소가 며칠 만에 26,000개 이상의 스타를 받았습니다. 이는 개발자가 Claude를 코딩에 사용하는 방식을 변화시킬 것을 약속하기 때문입니다. CLAUDE.md 파일은 Claude의 자기 분석: Anthropic의 AI가 어떻게 전례 없는 투명성으로 자체 아키텍처를 분석하는가AI 투명성의 획기적인 실험에서 Anthropic의 Claude는 자체 Claude Code v2.1.88 아키텍처를 분석하여 총 17장으로 구성된 포괄적인 기술 보고서를 작성했습니다. 이 전례 없는 자기 분석은 T

常见问题

GitHub 热点“How Claude's Planning-with-Files Skill Exposes the $2B Manus Workflow Architecture”主要讲了什么?

The othmanadi/planning-with-files repository represents a significant moment in the democratization of elite AI workflow patterns. As a Claude Code skill, it implements what indust…

这个 GitHub 项目在“how to implement Manus workflow with Claude Code”上为什么会引发关注?

The planning-with-files skill implements what might be termed the "persistent planning document" architecture. At its core is a markdown file with a rigorously defined structure that serves as both the planning artifact…

从“planning-with-files vs traditional project management tools”看,这个 GitHub 项目的热度表现如何?

当前相关 GitHub 项目总星标约为 19257,近一日增长约为 2701,这说明它在开源社区具有较强讨论度和扩散能力。