Skip to content

Commit 4262895

Browse files
initial commit
0 parents  commit 4262895

214 files changed

Lines changed: 17063 additions & 0 deletions

File tree

Some content is hidden

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

.code-workspace

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"folders": [
3+
{ "path": "client" },
4+
{ "path": "server" }
5+
]
6+
}

.github/FUNDING.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# These are supported funding model platforms
2+
3+
github: code-forge-temple
4+
patreon: # Replace with a single Patreon username
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
12+
polar: # Replace with a single Polar username
13+
buy_me_a_coffee: # Replace with a single Buy Me a Coffee username
14+
thanks_dev: # Replace with a single thanks.dev username
15+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

.github/workflows/deploy-docs.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Deploy Documentation
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
deploy:
11+
name: Deploy to GitHub Pages
12+
runs-on: ubuntu-latest
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
steps:
18+
- uses: actions/checkout@v4
19+
with:
20+
fetch-depth: 0
21+
- uses: oven-sh/setup-bun@v1
22+
23+
- name: Install dependencies
24+
run: |
25+
cd docs
26+
bun install
27+
28+
- name: Build website
29+
run: |
30+
cd docs
31+
bun run build
32+
33+
- name: Upload to GitHub Pages
34+
uses: actions/upload-pages-artifact@v3
35+
with:
36+
path: docs/build
37+
38+
- name: Deploy to GitHub Pages
39+
id: deployment
40+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
pnpm-debug.log*
6+
lerna-debug.log*
7+
8+
node_modules
9+
dist
10+
dist-ssr
11+
*.local
12+
13+
# Editor directories and files
14+
.vscode/*
15+
!.vscode/extensions.json
16+
.idea
17+
.DS_Store
18+
*.suo
19+
*.ntvs*
20+
*.njsproj
21+
*.sln
22+
*.sw?

LICENSE.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Agentic Signal License
2+
3+
## Dual License Model
4+
5+
### Open Source License: AGPL v3
6+
This software is licensed under the GNU Affero General Public License v3.0 for:
7+
- ✅ Personal use
8+
- ✅ Educational use
9+
- ✅ Non-commercial use
10+
- ✅ Open source projects
11+
12+
**Important**: AGPL v3 requires that if you run this software on a server and provide access to users over a network, you must provide the complete source code to those users.
13+
14+
### Commercial License Exception
15+
For commercial use, including:
16+
- 🏢 Business/enterprise use
17+
- 🌐 SaaS or hosted services
18+
- 🔒 Integration with proprietary software
19+
- 📦 Distribution in commercial products
20+
21+
A commercial license is required. Contact: https://github.com/code-forge-temple
22+
23+
## Why This Dual License?
24+
25+
- **Open Source Community**: Full access for learning, personal projects, and contributions
26+
- **Business Sustainability**: Commercial licensing funds continued development
27+
- **Transparency**: All code remains visible for audit and trust

README.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# 🤖 Agentic Signal
2+
3+
**Visual AI Workflow Automation Platform with Local Agent Intelligence**
4+
5+
[![License: AGPL v3 & Commercial](https://img.shields.io/badge/License-AGPL%20v3%20%7C%20Commercial-blue.svg)](LICENSE.md)
6+
[![Docs](https://img.shields.io/badge/docs-live-blueviolet)](https://code-forge-temple.github.io/agentic-signal/)
7+
[![TypeScript](https://img.shields.io/badge/TypeScript-007ACC?logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
8+
[![React](https://img.shields.io/badge/React-20232A?logo=react&logoColor=61DAFB)](https://reactjs.org/)
9+
[![Deno](https://img.shields.io/badge/Deno-000000?logo=deno&logoColor=white)](https://deno.land/)
10+
11+
> Transform complex tasks into visual workflows with local AI intelligence. No cloud dependencies required.
12+
13+
**🎥 [Watch the Demo Video](https://youtu.be/62zk8zE6UJI) - See Agentic Signal in action!**
14+
15+
## ✨ Features
16+
17+
### 🎯 **Visual Workflow Builder**
18+
- **Drag & Drop Interface** - Build workflows visually using React Flow
19+
- **Node-Based Architecture** - Connect data sources, AI processors, and outputs seamlessly
20+
- **Real-time Execution** - See your workflows run in real-time with live data flow
21+
22+
### 🧠 **Local AI Intelligence**
23+
- **Ollama Integration** - Run AI models locally with privacy and control
24+
- **Tool Calling** - AI agents can execute functions and access external APIs
25+
- **Structured Output** - JSON schema validation for reliable AI responses
26+
- **Conversation Memory** - Maintain context across workflow executions
27+
28+
### 🔗 **Rich Integrations**
29+
- See the [Nodes Reference](https://code-forge-temple.github.io/agentic-signal/docs/nodes/overview) for all supported integrations and node types.
30+
- **More integrations coming soon** - Discord, Slack, Notion, Airtable, and many more!
31+
32+
## 🚀 Quick Start
33+
34+
See the [Quick Start](https://code-forge-temple.github.io/agentic-signal/docs/getting-started/installation) for setup and configuration instructions.
35+
36+
## 📄 License
37+
38+
**Dual License Model**
39+
40+
- **Open Source (AGPL v3)**: Free for personal, educational, and non-commercial use
41+
- **Commercial License**: Required for business use, SaaS, or proprietary integration
42+
43+
See [LICENSE.md](LICENSE.md) for full details.
44+
45+
## 🆘 Support
46+
47+
- **Documentation**: [https://code-forge-temple.github.io/agentic-signal/](https://code-forge-temple.github.io/agentic-signal/)
48+
- **Issues**: [GitHub Issues](https://github.com/code-forge-temple/agentic-signal/issues)
49+
- **Discussions**: [GitHub Discussions](https://github.com/code-forge-temple/agentic-signal/discussions)
50+
- **Commercial Support**: please contact me on my Github email
51+
52+
---
53+
54+
**Built with ❤️ by the Code Forge Temple**
55+
56+
*Empowering everyone to build intelligent workflows with visual simplicity and local AI power.*

0 commit comments

Comments
 (0)