knox / MCP-4.json
0 likes
0 forks
1 files
Last active
1 | { |
2 | "mcpServers": { |
3 | "filesystem": { |
4 | "command": "npx", |
5 | "args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/allowed/files"] |
6 | }, |
7 | "git": { |
8 | "command": "uvx", |
9 | "args": ["mcp-server-git", "--repository", "path/to/git/repo"] |
10 | }, |
knox / MCP-3.json
0 likes
0 forks
1 files
Last active
1 | { |
2 | "mcpServers": { |
3 | "memory": { |
4 | "command": "npx", |
5 | "args": ["-y", "@modelcontextprotocol/server-memory"] |
6 | } |
7 | } |
8 | } |
knox / Bluesky-2.sh
0 likes
0 forks
1 files
Last active
1 | # use existing nvm to install node 18 and pnpm |
2 | make nvm-setup |
3 | |
4 | # pull dependencies and build all local packages |
5 | make deps |
6 | make build |
7 | |
8 | # run the tests, using Docker services as needed |
9 | make test |
knox / Bluesky-1.md
0 likes
0 forks
1 files
Last active
TypeScript Packages:
Package | Docs | NPM |
---|---|---|
@atproto/api : client library |
README | |
@atproto/common-web : shared code and helpers which can run in web browsers |
README | |
@atproto/common : shared code and helpers which doesn't work in web browsers |
README | |
@atproto/crypto : cryptographic signing and key serialization |
README | |
@atproto/identity : DID and handle resolution |
README | |
@atproto/lexicon : schema definition language |
README |
knox / Lazydocker-17.sh
0 likes
0 forks
1 files
Last active
1 | echo "alias lzd='lazydocker'" >> ~/.zshrc |
knox / Lazydocker-16.sh
0 likes
0 forks
1 files
Last active
1 | git clone https://github.com/jesseduffield/lazydocker.git |
2 | cd lazydocker |
3 | docker build -t lazyteam/lazydocker \ |
4 | --build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \ |
5 | --build-arg VCS_REF=`git rev-parse --short HEAD` \ |
6 | --build-arg VERSION=`git describe --abbrev=0 --tag` \ |
7 | . |