Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 3 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Example placeholders only
GOBLIN_ENV=DEV
API_BASE_URL=http://localhost:4000
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: CI (developer console pilot)
on:
pull_request:
push:
branches: [ main ]
jobs:
smoke:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check required files exist
run: |
test -f README.md
test -f docs/OVERVIEW.md
test -f ops/RUNBOOK.md
145 changes: 12 additions & 133 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,139 +1,18 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-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 / web
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

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz
dist/
build/

# Yarn Integrity file
.yarn-integrity

# dotenv environment variable files
# Env
.env
.env.*
!.env.example

# 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

# Sveltekit cache directory
.svelte-kit/

# vitepress build output
**/.vitepress/dist

# vitepress cache directory
**/.vitepress/cache

# Docusaurus cache and generated files
.docusaurus
# OS / editors
.DS_Store
.idea/
.vscode/

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# Firebase cache directory
.firebase/

# TernJS port file
.tern-port

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

# yarn v3
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# Vite logs files
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
# Logs
*.log
logs/
coverage/
2 changes: 2 additions & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* @gapview01

16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,14 @@
# goblin-developer-console
Goblin Developer Console — the control panel for builders. A minimal pilot for developers to create and manage Goblin bots, access APIs/SDKs, and view logs.
# Goblin Developer Console
The control panel for builders.

This is the **developer-facing app** for the Goblin ecosystem.
Day-1 is a minimal pilot:
- simple scaffolding
- fake data
- runs only in the DEV environment

**Bucket:** User, Developer & Agentic Experiences
**Status:** PILOT (DEV)

- Overview: see /docs/OVERVIEW.md
- How to run: see /ops/RUNBOOK.md
3 changes: 3 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Security Policy
- No secrets in this repo. Use Secret Manager via CI.
- Report vulnerabilities to security@<yourdomain>.
7 changes: 7 additions & 0 deletions docs/OVERVIEW.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Overview
Goblin Developer Console is where developers manage bots and integrations:
- Create and configure Goblin bots
- Access APIs and SDKs
- View logs and test connections

Day-1 goal: basic pilot scaffolding only.
11 changes: 11 additions & 0 deletions ops/RUNBOOK.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Runbook (Pilot)

## Local (DEV)
1. Copy .env.example to .env (do not commit real secrets).
2. Install dependencies (when code arrives).
3. Start dev server (when code arrives).

## Environments
- DEV: sandbox only
- STAGE: rehearsal
- PROD: mainnet (not used during pilot)
Empty file added src/.gitkeep
Empty file.
Empty file added tests/.gitkeep
Empty file.