Chore: Organize poc-opencode-server into logical directory structure - #1009
Merged
Conversation
- Reorganize files into 6 directories (00-planning through 05-results) - Add local .gitignore to exclude node_modules - Update README with clear navigation and file structure - Update MANIFEST with new organization - Update package.json scripts to reflect new paths - Preserve all PoC documentation and working code - Keep dev/ in root .gitignore per project guidelines
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The
dev/poc-opencode-server/directory contained 33+ files in a flat structure, making it difficult to navigate and understand the organization of planning documents, guides, demos, scripts, and results.Solution
Reorganized all files into a logical 6-directory structure:
00-planning/- Research and planning documents (POC_NOTES, FINDINGS, WORK-CLI-INTEGRATION)01-guides/- Step-by-step user guides (QUICKSTART, APPLICATION_GUIDE, SDK-EVALUATION, etc.)02-reference/- Technical reference documentation (INDEX, SUMMARY, AGENTS-MODELS-PERMISSIONS)03-demos/- Working code examples (11 demo files)04-scripts/- Automation scripts (explore.sh, VERIFY.sh)05-results/- Test results and logsChanges
.gitignoreto excludenode_modules/from version controlREADME.mdwith new structure overview and navigation linksMANIFEST.mdwith complete file organization referencepackage.jsonwith npm scripts reflecting new paths:npm run demo- Main ACP demonpm run demo:sdk- SDK testingnpm run demo:resume- Session resumptionnpm run verify- Environment verificationTesting
✅ All 303 unit tests passed
✅ Directory structure verified with
treecommand✅ File organization confirmed via git status
Example Structure
Notes
.gitignorestill excludes entiredev/directory (as per project guidelines)