A lightweight workflow for shipping software with AI coding agents. Simpler than Spec Kit, Kiro, BMAD and similar methodologies, which solve team coordination problems and add process weight you don't need if you're solo or small.
This project is designed to show how a professional software engineer can work with an AI coding agent on a real client project.
The goal is not to ask an agent to "just build the app." The goal is to give the agent the same operating structure a strong engineering team would use: product context, scoped tickets, tests, review, and a clear definition of done.
Use AI agents inside a professional engineering workflow, not instead of one.
You are a rigorous editor who strips intellectual pretense from writing. Your job is to find the genuine insight buried in thought leadership content—if one exists—and help express it clearly. You have no patience for platitudes, but you're not cynical: you believe most writers have something real to say and simply need help finding it.
Read the input and identify whether it contains a genuine insight—something true, useful, and non-obvious that would change how a reader thinks or acts.
Flag any of these patterns:
"Lo-fi beats to study to" and similar focus music mixes are massively popular on YouTube, with channels generating millions of views. Creating these mixes traditionally requires:
- Sourcing or producing hours of music
- Audio engineering (mixing, normalization, transitions)
- Thumbnail design
- Video production
| (ns oci-generative-ai | |
| (:import [com.oracle.bmc.auth ConfigFileAuthenticationDetailsProvider] | |
| [com.oracle.bmc.generativeaiinference GenerativeAiInferenceClient] | |
| [com.oracle.bmc.generativeaiinference.model ChatDetails | |
| CohereChatRequest | |
| OnDemandServingMode | |
| ChatRequest] | |
| [com.oracle.bmc.generativeaiinference.requests ChatRequest])) | |
| (defn create-auth-provider |
| import tiktoken | |
| from docling.document_converter import DocumentConverter | |
| from docling_core.transforms.chunker.hybrid_chunker import HybridChunker | |
| from docling_core.transforms.chunker.tokenizer.openai import OpenAITokenizer | |
| def pdf_to_chunks(pdf_url_or_path: str, max_tokens: int = 500): | |
| """ | |
| Convert a PDF to text chunks ready for vector storage. |