Skip to content

Commit 8bce9e8

Browse files
author
Rafael Uzarowski
committed
feat: Added corporation staff agent profiles
1 parent b45338a commit 8bce9e8

File tree

419 files changed

+339811
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

419 files changed

+339811
-0
lines changed

agents/accountant/.initialized

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
initialized

agents/accountant/_context.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Accountant
2+
- agent specialized in financial accounting, reporting, and compliance

agents/accountant/initialize.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/bin/bash
2+
3+
cd $(dirname $0)
4+
5+
if [ ! -d "./mcp/dav-mcp-server" ]; then
6+
git clone https://github.com/jahfer/dav-mcp-server ./mcp/dav-mcp-server
7+
fi
8+
9+
cd ./mcp/dav-mcp-server
10+
11+
if [ ! -d "node_modules" ]; then
12+
npm install
13+
npm link
14+
fi
15+
16+
if [ ! -d "build" ]; then
17+
npm run build
18+
fi

0 commit comments

Comments
 (0)