outcrop 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/cli.js +1137 -270
- package/docs/AGENTS.md +1 -0
- package/docs/API.md +36 -1
- package/docs/SPEC.md +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -134,6 +134,7 @@ Full normative spec: **[SPEC.md](docs/SPEC.md)**.
|
|
|
134
134
|
- **Globe mode**, on by default. The graph wrapped onto a sphere: links follow great circles across the surface, the far side dims, and it turns slowly until you take hold of it. Drag to spin. `Flat` unwraps it onto a plane, which is worth doing when you need to read the whole graph at once, since a globe hides half its nodes behind itself. Either choice is remembered per browser.
|
|
135
135
|
- **Raw HTML, allowlisted.** The subset a README uses (centred headings, badge images, `<details>` blocks) renders as markup. Everything else stays escaped and shows as text. A workspace gets cloned and written into by agents, and the JSON API on this origin has no auth, so `<script>`, event handlers, `iframe`/`object`/`svg`, and the `class`/`id`/`style` attributes are all off the list. HTML inside a code span is left alone as the sample it is.
|
|
136
136
|
- **Hand entry.** The `+` in the header opens a form for a new user story, epic, or document, on any page. The server assigns ids (`ST-004`, `E02`) and filenames, the epic/status/priority dropdowns are filled from the workspace as it stands, and the result is an ordinary markdown file you could have typed yourself.
|
|
137
|
+
- **In-page editing.** `Edit` on any document, task, or epic swaps the rendered body for its markdown source. It saves itself a moment after you stop typing and again when you leave, `⌘S` forces it, `Esc` finishes and re-renders. Frontmatter is never touched, so an edit cannot change an id, a status, or a card's position. A live-reload is held off while the editor is open, and if the file changed underneath you the save is refused rather than winning.
|
|
137
138
|
- **Clickable checklists**, in a task's subtasks and in any document. Ticking one rewrites that single `- [ ]` line on disk and nothing else. Checkboxes shown inside fenced code blocks are samples, so they are never counted or touched.
|
|
138
139
|
- **Auto-linking.** A bare `ST-001` or `E01` anywhere in any file becomes a link. Backlinks are derived, never stored.
|
|
139
140
|
- **Live reload** over SSE. Edit a file in your editor, the board updates. Agents can subscribe to the same stream instead of polling.
|