Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
- .woodpecker.yaml: image paths -> library/autojanet-{agent,dispatcher}
- .woodpecker.yaml: secret names RS_HARBOR_USER / RS_HARBOR_PASS (global)
- container/Dockerfile: restore COPY skills/, skills/ populated from opencode config
- skills/: 84 opencode skills bundled into image
- k8s/manifests: update image refs to library/
1.9 KiB
1.9 KiB
Markdown Language Prompt Snippet
Key Concepts
- Heading Hierarchy:
#through######for document structure, with h1 as the title - Front Matter: YAML metadata between
---delimiters at the top of the file - Fenced Code Blocks: Triple backticks with optional language identifier for syntax highlighting
- Reference-Style Links:
[text][ref]with[ref]: urldefinitions, useful for repeated URLs - Tables: Pipe-delimited columns with alignment markers (
:---,:---:,---:) - Admonitions: Blockquote-based callouts (
> **Note:**,> **Warning:**) for emphasis - Task Lists:
- [ ]and- [x]for checklists in issue trackers and READMEs - HTML Embedding: Raw HTML allowed inline for features Markdown does not support natively
Notable File Patterns
README.md— Project overview and entry point for new contributors (high-value)CONTRIBUTING.md— Contribution guidelines, code style, PR processCHANGELOG.md— Version history following Keep a Changelog or similar formatdocs/**/*.md— Documentation directory with guides, API references, tutorials*.mdin source directories — Co-located documentation for modules or packagesADR-*.mdoradr/*.md— Architecture Decision Records
Edge Patterns
- Markdown files
documentsthe code components they describe or reference - Links to other
.mdfiles createrelatededges between documentation nodes - Code block references mentioning file paths may imply
documentsedges to those files - README files in subdirectories typically
documentsthe module at that path
Summary Style
"Project overview documentation with N sections covering installation, usage, and API reference." "Architecture Decision Record documenting the choice of [technology] for [purpose]." "Contributing guide with code style rules, testing requirements, and pull request process."