Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .clinerules 2
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Cline Rules - Project Intelligence

*This file serves as Cline's learning journal for this specific project. It captures important patterns, preferences, technical nuances, and project intelligence discovered during development.*

## Purpose
- Document critical implementation paths and decisions.
- Record user preferences and specific workflow requirements.
- Capture project-specific coding patterns or architectural choices.
- Note known challenges, workarounds, or areas requiring special attention.
- Track the evolution of project decisions and rationale.
- Log effective tool usage patterns or configurations for this project.

## How to Use
- Add entries as new insights are gained.
- Keep entries concise and actionable.
- Refer back to this file to ensure consistency and apply learned patterns.
- Update entries if understanding evolves or decisions change.

## Current Rules & Insights

*(Add project-specific rules and insights below as they are discovered)*

---
37 changes: 37 additions & 0 deletions .dockerignore 2
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Git files
.git
.gitignore

# Node modules
node_modules

# Build artifacts (if building outside Docker first)
dist
# Keep dist if using multi-stage build where source is copied first

# Source files are needed for the build step inside Docker
# src

# Test files
tests/
*.test.ts
*.spec.ts
vitest.config.ts
jest.config.js

# Configuration files
# tsconfig.json is needed for the build step inside Docker
# tsconfig.json
.env*
# package-lock.json # Keep for npm ci in Dockerfile
yarn.lock
.clinerules

# Docker files themselves
Dockerfile
docker-compose.yml

# Other development files
README.md
LICENSE
.npmignore
16 changes: 16 additions & 0 deletions .env 2.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# plugged.in MCP Proxy Server Configuration

# Required: Your API key from plugged.in App
# Get one at: https://plugged.in/api-keys
PLUGGEDIN_API_KEY=your_api_key_here

# Optional: Base URL for plugged.in App API
# Default: https://plugged.in
# PLUGGEDIN_API_BASE_URL=https://plugged.in

# Optional: Transport configuration (when not using CLI arguments)
# These are typically set via command line arguments instead
# TRANSPORT=stdio
# PORT=12006
# STATELESS=false
# REQUIRE_API_AUTH=false
2 changes: 2 additions & 0 deletions .env.local 2.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
PLUGGEDIN_API_KEY=pg_in_***
PLUGGEDIN_API_BASE_URL=http://localhost:12005
1 change: 1 addition & 0 deletions .env.production.local 2.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
PLUGGEDIN_API_KEY=pg_in_***
2 changes: 2 additions & 0 deletions .gitattributes 2
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
134 changes: 134 additions & 0 deletions .gitignore 2
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp
.cache

# Docusaurus cache and generated files
.docusaurus

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

dist/**/*
/memory-bank
.DS_Store
5 changes: 5 additions & 0 deletions .npmignore 2
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules
*.log
.DS_Store
dist/
coverage/
Loading