A simple command line markdown server
User Onboarding and Product Walkthrough Library
Modern app walkthrough library compatible with expo router
Walkthrough, an Angular library
A lightweight walkthrough library for React Native utilizing React's Context API
Guided tour/walkthrough component for react
"# open-walkthrough"
Lightweight React walkthrough/tour component with auto-positioning, dependency chains, and smooth animations
VSCode public API plugged on the monaco editor - walkthrough service-override
An inline wrapper for calling out React Native components via tooltip
Simple and fully customizable walkthrough guide for your app
An intuitive guided walkthrough library with UI highlighting and voice narration for web apps.
VSCode public API plugged on the monaco editor - common package (chat, extensions, interactive, notebook, task, terminal, testing, walkthrough)
Walkthrough, an Angular library
A javascript library for easy walkthrough and site tour / tutorial
A experimental compiler that compiles walkthrough documentation to working programs
A flexible, customizable tour/walkthrough library for React Native with multi-tour support, mask shapes, and Portal-based rendering
An Angular Material library for displaying walk-through pop-ups and dialogs using a declarative way
A walkthrough swiper component for React-Native. Can be used in onboarding/walkthrough screens. Uses Reanimated API to create smooth animations.
Product Tour or walkthrough of webapp
VSCode public API plugged on the monaco editor - common package (chat, configuration, debug, editor, explorer, extension-gallery, interactive, mcp, notebook, outline, performance, preferences, search, terminal, testing, timeline, view-common, walkthrough)
**Token**: `Walkthrough` > Permite mostrar los tours asociados a una vista específica y proporciona una interfaz intuitiva para su ejecución, facilitando la navegación guiada por las funcionalidades de la aplicación.
A walkthrough creator for introJS
A simple and highly customizable walkthrough library which can be used in your react apps to guide users through your website
A Rust crate for recursive directory traversal.
Deterministic presentation engine for AI-generated technical walkthroughs
Terminal-first diagram TUI and MCP server for Mermaid-backed sessions
AI Plugin Manager — consumer CLI (install, validate, doctor, link)
Core library for AIPM — manifest parser, resolver, store, lockfile
Engine API schema source-of-truth for AIPM (canonical Rust types + build-time generated tables)
A TLA+ model checker written in Rust
The vela command-line tool: build, check, sign, replay, and publish scientific frontier state.
Core library for the Vela scientific knowledge protocol: replayable frontier state, signed canonical events, and proof packets.
Vela agent layer: scoped scientific tasks (Literature Scout, Notes Compiler, Code Analyst, …) that emit signed proposals into a Vela frontier.
A small genetic algorithms library.
Local-first, repo-pinned memory layer for coding agents. CLI + MCP server over a SQLite store. No daemon.
A Ruby gem to generate a walkthrough the project lifecycle with the AwanLLM API for generating and retrieving content. Please feel free to update the gem with your updates
Tutorial that works through setting up a hydra head
Ghost Story allows you to write a story in markdown. The story can then be read back to you. A ghost story is both text and automated scripts that will type out code.
Zucchini follows simple walkthrough scenarios for your iOS app, takes screenshots and compares them to the reference ones.
Zucchini follows simple walkthrough scenarios for your iOS app, takes screenshots and compares them to the reference ones.
Specbook is a Rails engine that turns Turnip features and RSpec system specs into a browsable, animated walkthrough — screenshots with element overlays, Gherkin step cards, and Playwright trace viewer.
divshare ======== Description ----------- The divshare gem makes it easier to use the Divshare API. To use it, you need to create a Divshare account and sign up for an API key. Usage ----- Here's a brief walkthrough of the basic operations (see `examples/` for more information): require 'divshare' # Set these for your divshare account api_key = 'your api key' api_secret = 'your api secret' email = 'your login email address' password = 'your password' filename = 'a file you want to upload' client = Divshare::Client.new(api_key, api_secret) client.login(email, password) all_my_files = client.get_user_files all_my_files.each do |f| print "#{f.file_name} (#{f.file_size}) " puts "was last downloaded #{Time.at(f.last_downloaded_at.to_i)}" end ticket = client.get_upload_ticket uploaded_id = client.upload(ticket, filename) puts "#{filename} uploaded with new id: #{uploaded_id}" client.logout Now, going through the same script step-by-step. Use your Divshare API key and secret (comes with key) to create a client: client = Divshare::Client.new(api_key, api_secret) Login using the credentials for your Divshare account: client.login(email, password) Get an array of all of your files: all_my_files = client.get_user_files Do something with the files: all_my_files.each do |f| print "#{f.file_name} (#{f.file_size}) " puts "was last downloaded #{Time.at(f.last_downloaded_at.to_i)}" end Upload a file, and capture its id: ticket = client.get_upload_ticket uploaded_id = client.upload(ticket, filename) Logout client.logout Installation ------------ Install using rubygems: sudo gem install divshare Or clone from github git clone git://github.com/wasnotrice/divshare.git
# Otto AsciiDoc-powered static site generator with Jekyll-style conventions: layouts, includes, data files, posts, drafts, permalinks, and custom collections. ## Install ```sh gem install ottogen ``` Requires Ruby 3.0 or newer. ## Quickstart ```sh mkdir mysite && cd mysite otto init otto build otto serve open http://127.0.0.1:8778/ ``` For a longer walkthrough including AsciiDoc syntax, see [GUIDE.md](GUIDE.md). ## Commands | Command | Description | |---|---| | `otto init [DIR]` | Scaffold a new site (current dir if omitted) | | `otto build` | Render the site to `_build/` | | `otto build --drafts` | Include posts from `_drafts/` | | `otto watch` | Rebuild on file change | | `otto serve` | Serve `_build/` on port 8778 | | `otto generate PAGE` | Create a new page in `pages/` | | `otto post "Title"` | Create a new dated post in `_posts/` | | `otto clean` | Delete `_build/` | | `otto doctor` | Sanity-check project layout | ## Project layout ``` my-site/ ├── .otto # marker ├── config.yml # site config ├── assets/ # copied verbatim into _build/ ├── pages/ # AsciiDoc pages, output mirrors path ├── _layouts/ # ERB layouts (.html.erb) ├── _includes/ # ERB partials ├── _data/ # YAML/JSON files exposed as site.data.* ├── _posts/ # YYYY-MM-DD-slug.adoc └── _drafts/ # undated drafts (excluded by default) ``` ## Configuration (`config.yml`) ```yaml title: My Otto Site description: Things I write url: https://example.com baseurl: "" permalink: /:year/:month/:day/:slug/ collections: recipes: output: true ``` `permalink` accepts these tokens: `:year`, `:month`, `:day`, `:slug`, `:title`. Templates ending in `/` produce pretty URLs (`<path>/index.html`). ## Pages and posts Both support YAML front matter: ```adoc --- layout: default title: Hello tags: [ruby, cli] --- = Hello Welcome to {site_title}. This page is at {page_url}. ``` Pages live under `pages/`; posts under `_posts/` with `YYYY-MM-DD-slug.adoc` names. Layouts wrap rendered AsciiDoc; partials in `_includes/` are pulled in via `<%= partial 'header.html' %>`. ## License MIT
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.