npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

fizko-cli

v0.4.2

Published

CLI para consultar datos tributarios y contables desde la API de Fizko

Readme

Fizko CLI

CLI para consultar datos tributarios y contables desde la API de Fizko.

Instalación

npm install -g fizko-cli
# o sin instalar:
npx fizko-cli <command>

Autenticación

fizko login

Se abrirá tu navegador para iniciar sesión con tu cuenta Fizko. Las credenciales se guardan en ~/.config/fizko/credentials.json (compatible con la versión Python).

También puedes usar una API key directamente:

export FIZKO_API_KEY=fizko_xxxxx

Uso

# Empresas
fizko companies list
fizko companies get <company-uuid>

# Documentos tributarios
fizko tax purchases --company <uuid>
fizko tax sales --company <uuid> --period-year 2026 --period-month 1
fizko tax documents --company <uuid> --period 2026-01
fizko tax f29 --company <uuid>
fizko tax summary --company <uuid> --period 2026-01
fizko tax iva --company <uuid> --period 2026-01
fizko tax timeline --company <uuid>
fizko tax honorarios --company <uuid>
fizko tax ddjj --company <uuid> --year 2025
fizko tax checker-tributario --company <uuid> --period 2026-01
fizko tax checker-impuestos --company <uuid> --period 2026-01

# Contabilidad
fizko accounting accounts --company <uuid>
fizko accounting journal-entries --company <uuid> --period 2026-01
fizko accounting balance-report --company <uuid> --period-from 2026-01 --period-to 2026-12
fizko accounting income-statement --company <uuid> --period-from 2026-01 --period-to 2026-12
fizko accounting general-journal --company <uuid> --period 2026-01
fizko accounting general-ledger --company <uuid> --period-from 2026-01 --period-to 2026-12
fizko accounting classified-balance --company <uuid> --period 2026-12
fizko accounting rli-balance --company <uuid> --period-from 2026-01 --period-to 2026-12
fizko accounting progress --company <uuid> --period 2026-01

# Obligaciones
fizko accounting obligations --company <uuid> --status pending
fizko accounting obligation <obligation-uuid>
fizko accounting contabilizar <obligation-uuid>
fizko accounting descontabilizar <obligation-uuid>
fizko accounting abonar <obligation-uuid> --amount 50000 --payment-type cash

# Movimientos bancarios
fizko banking movements --company <uuid> --status pending
fizko banking movement <movement-uuid>
fizko banking classify <movement-uuid> --classification 'Gasto Operacional'
fizko banking contabilizar <movement-uuid> --account-code 5101
fizko banking contabilizar-reconciliaciones <movement-uuid> --entries '[{"reconciliation_id":"UUID","lines":[{"account_code":"5101","debit":1000,"credit":0}]}]'
fizko banking descontabilizar <movement-uuid>

# Conciliación bancaria
fizko banking reconcile --movement-id <uuid> --obligation-id <uuid>
fizko banking reconcile-multi --movement-id <uuid> --obligation-ids UUID1,UUID2
fizko banking unmatch <reconciliation-uuid>
fizko banking list-reconciliations --company <uuid> --period 2026-01
fizko banking suggestions --company <uuid> --movement-id <uuid>
fizko banking status --company <uuid> --period 2026-01
fizko banking obligation-from-movement <movement-uuid> --classification 'Gasto Operacional'

# Schema para agentes AI
fizko schema

# Estado de sesión
fizko status
fizko logout

Todos los comandos devuelven JSON a stdout. Errores van a stderr como JSON. Usa --compact para output sin indentación.

Requisitos

Node.js 18+