Agentists Quickstart Deprecated banner
jedarden jedarden

Agentists Quickstart Deprecated

Development community

Description

Opinionated DevPod workspace configs for agentic engineering — Claude Code, shared secrets, VS Code extensions, ready on first launch.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

🤖 Agentists Quick Start

Welcome to the Agentists Quick Start repository - your opinionated guide to getting started with agentic engineering. 🚀

⚡ Quick Start

Launch a ready-to-use workspace in seconds using [DevPod](https://devpod.sh/):

**Motivation**

  • Share your set up across CodeSpaces and/or your HomeLab This includes:
  • Favored VS Code extensions
  • Shared secrets (e.g. Claude API Key e.g. ANTHROPIC_API_KEY) from an external provider such as Github Codespaces Secrets or 1password

**Install DevPod in a Code space**

  • Clone this repo
  • Create a codespace from it
  • Install DevPod
  curl -L -o devpod "https://github.com/loft-sh/devpod/releases/latest/download/devpod-linux-amd64" && sudo install -c -m 0755 devpod /usr/local/bin && rm -f devpod

**Basic Development Environment:**

devpod up https://github.com/jedarden/agentists-quickstart@workspace/basic

**Security-Focused Environment:**

devpod up https://github.com/jedarden/agentists-quickstart@workspace/security

🧠 What is Agentic Engineering?

Agentic engineering is the practice of building, deploying, and managing AI agents that can autonomously perform tasks, make decisions, and interact with various systems. This repository provides best practices and ready-to-use configurations to accelerate your journey into this emerging field.

📋 Prerequisites

**For DevPod.sh (Recommended):**

**For Manual Setup:**

  • Docker or Podman installed
  • VS Code with Dev Containers extension
  • Git
  • Basic understanding of containerization

🛠️ Alternative Setup Methods

Manual VS Code Setup

  1. **Clone a specific branch**

    # For basic development
    git clone -b workspace/basic https://github.com/jedarden/agentists-quickstart
    
    # For security-focused development
    git clone -b workspace/security https://github.com/jedarden/agentists-quickstart
  2. **Op