flowcraft

(★ 415)

Production-grade Go SDK for building AI agents with long-term memory, knowledge retrieval, and voice — runnable as a library, a daemon, or a real-time pipeline.

File Explorer

  • .gitignore
  • .golangci.yml
  • CHANGELOG.legacy.md
  • CHANGELOG.md
  • CONTRIBUTING.md
  • go.work
  • LICENSE
  • Makefile
  • README.md
  • SECURITY.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

deepseek

View Details ▼

An AI coding assistant using DeepSeek Coder models.

deepseek

Start interactive mode:

deepseek chat "{{write a Python function for binary search}}"

Run a single prompt:

deepseek --model {{deepseek-coder:6.7b}}

Start interactive mode with a specific model:

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

go run

View Details ▼

Compile and run Go code without saving a binary.

go run {{path/to/file.go}}

Run a Go file:

go run {{path/to/package}}

Run a main Go package:

🔍

gofmt

View Details ▼

Format Go source code.

gofmt {{path/to/source.go}}

Format a file and display the result to the console:

gofmt -w {{path/to/source.go}}

Format a file, overwriting the original file in-place:

gofmt -s -w {{path/to/source.go}}

Format a file, and then simplify the code, overwriting the original file:

🔍

npx

View Details ▼

This command is an alias of `npm exec`.

tldr npm exec

View documentation for the original command:

🔍

openai

View Details ▼

CLI tool providing access to the OpenAI API.

openai api models.list

List models:

openai api completions.create --model {{ada}} --prompt "{{Hello world}}"

Create a completion:

openai api chat_completions.create --model {{gpt-3.5-turbo}} --message {{user "Hello world"}}

Create a chat completion:

🔍

python3

View Details ▼

This command is an alias of `python`.

tldr python

View documentation for the original command:

🔍

bwrap

View Details ▼

Run programs in a lightweight sandbox.

bwrap --ro-bind / / {{/bin/bash}}

Run a program in a read-only environment:

bwrap --dev-bind /dev /dev --proc /proc --ro-bind / / --tmpfs /tmp {{/bin/bash}}

Give the environment access to devices, process information and create a `tmpfs` for it:

// repository documentation