fleet-memory/hindsight-docs/static/img/icons/README.md
Nicolò Boschi 90ad003c46
docs: add AI SDK integration documentation (#304)
* docs: add AI SDK integration documentation

- Add comprehensive AI SDK documentation in docs/sdks/integrations/ai-sdk.md
  - Detailed description of all three memory tools (retain, recall, reflect)
  - Complete parameter documentation and return types
  - Advanced usage patterns (streaming, multi-user, ToolLoopAgent)
  - HTTP client example for zero-dependency usage
  - TypeScript types and API reference
  - Best practices and system prompt examples

- Update AI SDK README to brief quickstart with link to docs
  - Single source of truth: comprehensive docs in documentation site
  - README now focuses on quick setup and points to full docs
  - Maintains features list and basic example for npm page

* fix
2026-02-05 17:05:18 +01:00

47 lines
1.4 KiB
Markdown

# Sidebar Icons
This directory contains SVG icons for the sidebar navigation items.
## Required Icons
### Client Icons
- `python.svg` - Python logo (download from https://www.python.org/community/logos/)
- `nodejs.svg` - Node.js logo (download from https://nodejs.org/en/about/branding)
- `terminal.svg` - Terminal/CLI icon
- `package.svg` - Package/box icon for Embedded SDK
### Integration Icons
- `mcp.svg` - MCP Server icon
- `litellm.svg` - LiteLLM logo (download from https://github.com/BerriAI/litellm)
- `openclaw.svg` - OpenClaw logo
- `vercel.svg` - Vercel triangle logo (download from https://vercel.com/design/brands)
- `skills.svg` - Skills/star icon
## Specifications
- **Format**: SVG (preferred) or PNG
- **Size**: 16x16px or larger (will be scaled to 14x14px)
- **Style**: Monochrome or simple colors work best
- **Color**: Icons should work on both light and dark backgrounds
## Alternative: Using Remote URLs
Instead of local files, you can use remote URLs directly in the CSS:
```css
a.menu__link[href*="/sdks/python"]::before {
background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v10/icons/python.svg');
}
```
Popular icon CDNs:
- Simple Icons: https://simpleicons.org/
- cdnjs: https://cdnjs.com/
- jsDelivr: https://www.jsdelivr.com/
## Creating Icons
If you need to create custom icons, use tools like:
- Figma (https://figma.com)
- Inkscape (https://inkscape.org)
- SVGOMG for optimization (https://jakearchibald.github.io/svgomg/)