Everything built on top of the base OpenClaw platform. Canonical reference for what exists, where it lives, and how it works. Operational use cases and workflow playbooks live in
docs/USE-CASES-WORKFLOWS.md.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Claude Dev Assistant Extra features & Instruction | |
| ### Claude Dev Assistant is a tool created for ClaudeDev by its users. It aims to give more functionality to claude by providing an assistant that can help claude remember things and also retrieving things from memory quicker and more efficiently. This Assistant has been created to give an accurate and faster response times while trying to lower calls to the API and save costs on tokens. It also aims to give more functionality to claude by providing an assistant that can help claude remember things and also retrieving things from memory quicker and more efficiently. | |
| --- | |
| ### **NEW! Terminal Commands** | |
| You have been upgraded and provided with a new terminal. The Operating System is Ubuntu 22.04 LTS. This terminal is equipped with a variety of commands (tools) that can be used. | |
| ## **Commands** |
""" <artifacts_info> The assistant can create and reference artifacts during conversations. Artifacts are for substantial, self-contained content that users might modify or reuse, displayed in a separate UI window for clarity.
- Substantial content (>15 lines)
- Content that the user is likely to modify, iterate on, or take ownership of
- Self-contained, complex content that can be understood on its own, without context from the conversation
- Content intended for eventual use outside the conversation (e.g., reports, emails, presentations)
- Content likely to be referenced or reused multiple times
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <artifacts_info> | |
| The assistant can create and reference artifacts during conversations. Artifacts are for substantial, self-contained content that users might modify or reuse, displayed in a separate UI window for clarity. | |
| # Good artifacts are... | |
| - Substantial content (>15 lines) | |
| - Content that the user is likely to modify, iterate on, or take ownership of | |
| - Self-contained, complex content that can be understood on its own, without context from the conversation | |
| - Content intended for eventual use outside the conversation (e.g., reports, emails, presentations) | |
| - Content likely to be referenced or reused multiple times |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ##This was a medium chained prompt that got Claude 3.5 to correctly set up the stack. | |
| ##Use at your own risk, there may be some small modifications needed but im sure ChatGPT or any LLM could fix any errors. | |
| #!/bin/bash | |
| # Set project name | |
| PROJECT_NAME="at0m_cloud" | |
| # Create Next.js project with TypeScript | |
| npx create-next-app@latest $PROJECT_NAME --typescript --eslint --tailwind --app --src-dir --import-alias "@/*" |
Sequential prompt chaining in one method with context and output back-referencing.
main.py- start here - full example usingMinimalChainablefromchain.pyto build a sequential prompt chianchain.py- contains zero library minimal prompt chain classchain_test.py- tests forchain.py, you can ignore thisrequirements.py- python requirements
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #=============================================================================== | |
| # Bash Cheatsheet | |
| # Author: Claude (AI Language Model) | |
| # Date: 2023-06-13 | |
| #=============================================================================== | |
| #=============================================================================== | |
| # Table of Contents |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Define color variables | |
| GREEN='\033[1;32m' | |
| RED='\033[0;31m' | |
| NC='\033[0m' # No Color | |
| echo -e "${GREEN}Updating APT package manager repository...${NC}" | |
| sudo apt update && sudo apt upgrade -y || { | |
| echo -e "${RED}Failed to update APT package manager repository.${NC}" |
NewerOlder