finfocus-dev — community finfocus-dev, finfocus, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for CLI Agents needing comprehensive financial presentation and management in a Pulumi Environment Finfocus is the CLI for financial presentation and management in a Pulumi Environment

rshade rshade
[0]
[0]
Updated: 3/5/2026

Agent Capability Analysis

The finfocus-dev skill by rshade is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

Ideal Agent Persona

Perfect for CLI Agents needing comprehensive financial presentation and management in a Pulumi Environment

Core Value

Empowers agents to build and test FinFocus binaries, leveraging golangci-lint, markdownlint, and go mod tidy for robust financial data analysis and validation via make commands like make build, make test, and make lint

Capabilities Granted for finfocus-dev

Building FinFocus binaries for financial data visualization
Validating financial presentation code with golangci-lint and markdownlint
Automating unit tests and integration tests for FinFocus

! Prerequisites & Limits

  • Requires Pulumi Environment setup
  • Dependent on Go programming language and make command-line tooling
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

finfocus-dev

Install finfocus-dev, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

FinFocus Development Workflow

Quick Reference

bash
1make build # Build binary to bin/finfocus 2make test # Unit tests (fast, default) 3make lint # golangci-lint + markdownlint (5+ min, use extended timeout) 4make validate # go mod tidy + go vet 5make test-race # Race detector 6make test-integration # Cross-component tests (10min timeout) 7make build-all # Build binary + all plugins

Critical rules: Always run make lint and make test before claiming success. Never run git commit (user commits manually). Never modify .golangci.yml.

Adding a CLI Command

  1. Create internal/cli/your_command.go
  2. Follow constructor pattern:
go
1func NewYourCmd() *cobra.Command { 2 var flagVar string 3 cmd := &cobra.Command{ 4 Use: "your-command", 5 Short: "Description", 6 RunE: func(cmd *cobra.Command, args []string) error { 7 // Use cmd.Printf() not fmt.Printf() 8 return nil 9 }, 10 } 11 cmd.Flags().StringVar(&flagVar, "flag", "", "description") 12 return cmd 13}
  1. Register in parent command (e.g., root.go or cost.go)
  2. Use RunE (not Run) for error handling
  3. Defer cleanup immediately: defer cleanup()

Resource Processing Pipeline

All cost commands follow:

text
1ingest.LoadPulumiPlan(path) -> ingest.MapResources() -> registry.Open(ctx, adapter) 2 -> engine.GetProjectedCost/GetActualCost() -> engine.RenderResults(format, results)

Testing Standards

  • Use testify/assert and testify/require exclusively (never manual if/t.Errorf)
  • require.* for setup that must succeed; assert.* for value checks
  • Table-driven tests for variations
  • Package suffix _test for black-box testing
  • t.TempDir() for temporary files (auto-cleanup)
  • Capture output: cmd.SetOut(&buf) and cmd.SetErr(&buf)
  • Target 80% coverage minimum, 95% for critical paths

See references/testing-patterns.md for detailed test patterns and examples.

Project Structure

See references/project-structure.md for the complete package map and key file locations.

Error Handling

  • Wrap errors: fmt.Errorf("context: %w", err)
  • Return early on errors
  • Plugin failures don't stop processing (graceful degradation)
  • Validation prefix: "VALIDATION: %v", plugin error prefix: "ERROR:"

Logging (zerolog)

go
1log := logging.FromContext(ctx) 2log.Debug().Ctx(ctx).Str("component", "engine").Msg("message")

Standard fields: trace_id, component, operation, duration_ms. Enable debug: --debug flag or FINFOCUS_LOG_LEVEL=debug.

Date Handling

Support both "2006-01-02" and RFC3339. Default --to to time.Now(). Validate ranges (to must be after from).

Output Formats

Three formats via --output flag: table (default), json, ndjson. Always use cmd.Printf() for testability.

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is finfocus-dev?

Perfect for CLI Agents needing comprehensive financial presentation and management in a Pulumi Environment Finfocus is the CLI for financial presentation and management in a Pulumi Environment

How do I install finfocus-dev?

Run the command: npx killer-skills add rshade/finfocus/finfocus-dev. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for finfocus-dev?

Key use cases include: Building FinFocus binaries for financial data visualization, Validating financial presentation code with golangci-lint and markdownlint, Automating unit tests and integration tests for FinFocus.

Which IDEs are compatible with finfocus-dev?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for finfocus-dev?

Requires Pulumi Environment setup. Dependent on Go programming language and make command-line tooling.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add rshade/finfocus/finfocus-dev. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use finfocus-dev immediately in the current project.

Related Skills

Looking for an alternative to finfocus-dev or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI