diff --git a/docs/content/changelogs/v0.6.x/changelog.md b/docs/content/changelogs/v0.6.x/changelog.md index 7576c8121..138621c40 100644 --- a/docs/content/changelogs/v0.6.x/changelog.md +++ b/docs/content/changelogs/v0.6.x/changelog.md @@ -179,7 +179,6 @@ See the following to learn more - `hof gen -h` - [getting-started/code-generation](/getting-started/code-generation/) - [code-generation/adhoc](/code-generation/adhoc/) -- [reference/hof-gen/adhoc-file-gen](/reference/hof-gen/adhoc-file-gen/) ### other changes @@ -204,7 +203,7 @@ See the following to learn more: - `hof flow -h` - [getting-started](/getting-started/task-engine/) - [task-engine](/task-engine/) -- [reference](/reference/hof-flow/) +- [task reference](/task-engine/tasks/) ### other changes @@ -227,7 +226,7 @@ See the following to learn more: - `hof datamodel -h` - [getting-started/data-layer](/getting-started/data-layer/) -- [reference/hof-datamodel](/reference/hof-datamodel/) +- [data modeling section](/data-modeling/) ### other changes diff --git a/docs/content/first-example/data-layer/checkpointing.md b/docs/content/first-example/data-layer/checkpointing.md index 4df933fdc..9b8283f4f 100644 --- a/docs/content/first-example/data-layer/checkpointing.md +++ b/docs/content/first-example/data-layer/checkpointing.md @@ -21,7 +21,7 @@ Available Commands: {{}} Run `hof dm -h` for the full listing. -The top-level [data-modeling](/reference/hof-datamodel/) goes deeper into +The top-level [data-modeling](/data-modeling/) goes deeper into the command and many related topics. ### Checkpointing diff --git a/docs/content/first-example/data-layer/schema.md b/docs/content/first-example/data-layer/schema.md index 2288cb068..c404c5415 100644 --- a/docs/content/first-example/data-layer/schema.md +++ b/docs/content/first-example/data-layer/schema.md @@ -22,7 +22,7 @@ The following as the core of the `#Datamodel` schema. {{< codePane title="Core of #Datamodel" file="code/first-example/data-layer/content/schema/hof-dm.html">}} -See [hof datamodel schemas](/reference/hof-datamodel/schemas/) for the full schema. +See [hof datamodel schemas](/data-modeling/schemas/) for the full schema. ### example/schema.#Datamodel diff --git a/docs/content/getting-started/command-help.md b/docs/content/getting-started/command-help.md index 886ae937b..36eed1bb7 100644 --- a/docs/content/getting-started/command-help.md +++ b/docs/content/getting-started/command-help.md @@ -24,7 +24,7 @@ Top level commands and help message Used for data model management (dm for short) -See the [Data Modeling section](/reference/hof-datamodel/) for details. +See the [data modeling section](/data-modeling/) for details.
hof help datamodel @@ -36,7 +36,7 @@ See the [Data Modeling section](/reference/hof-datamodel/) for details. Create one-liners to generate files with data, CUE, and templates or use composable generators to build out advanced applications. -See [the code gen docs](/reference/hof-gen/) to learn more +See [the code generation section](/code-generation/) to learn more
hof help flow @@ -47,7 +47,7 @@ See [the code gen docs](/reference/hof-gen/) to learn more Build workflows and scripts with CUE and a DAG engine -See [the flow docs](/reference/hof-flow/) to learn more +See [the task engine section](/task-engine/) to learn more
hof help flow diff --git a/docs/content/getting-started/cue.md b/docs/content/getting-started/cue.md index a4e7372bf..94b9a21e8 100644 --- a/docs/content/getting-started/cue.md +++ b/docs/content/getting-started/cue.md @@ -49,6 +49,20 @@ To further your CUE knowledge, be sure to check out these resources: - [Cuetorials](https://cuetorials.com) (by Hofstadter) +### Hof's CUE commands + +Hof embeds CUE's `vet, def, eval, export` commands for your convenience. +The are mostly drop in alternatives, some codecs are not available and +several enhancements have been added. + +The enhancements are: + +- additional methods for data placement +- increased flexibility for environment variables +- @userfiles() to include any file +- `--tui` flag to open hof's TUI for the commands + + ### Hof & CUE Modules __hof__ has a preview version for __CUE modules__. diff --git a/docs/content/getting-started/task-engine.md b/docs/content/getting-started/task-engine.md index 109550210..ba7e8aff7 100644 --- a/docs/content/getting-started/task-engine.md +++ b/docs/content/getting-started/task-engine.md @@ -109,7 +109,7 @@ You can find the schema and example for all tasks in You can find many examples through hof's codebase and other projects -- [the hof/flow reference section](/reference/hof-flow/tasks/) +- [the hof/flow task reference subsection](/task-engine/tasks/) - [the hof/flow test directory](https://github.com/hofstadter-io/hof/tree/_dev/flow/testdata) - [LLM chat examples](https://github.com/hofstadter-io/hof/tree/_dev/flow/chat) - [event and server based processing](https://github.com/verdverm/streamer-tools)