vib 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. vib-0.1.0/.gitignore +672 -0
  2. vib-0.1.0/.gitignore_tmp +669 -0
  3. vib-0.1.0/.readthedocs.yaml +16 -0
  4. vib-0.1.0/LICENSE +676 -0
  5. vib-0.1.0/Makefile +36 -0
  6. vib-0.1.0/PKG-INFO +279 -0
  7. vib-0.1.0/README.md +246 -0
  8. vib-0.1.0/docs/api.rst +51 -0
  9. vib-0.1.0/docs/architecture.rst +49 -0
  10. vib-0.1.0/docs/conf.py +15 -0
  11. vib-0.1.0/docs/configuration.rst +66 -0
  12. vib-0.1.0/docs/index.rst +17 -0
  13. vib-0.1.0/docs/mcp.rst +75 -0
  14. vib-0.1.0/docs/quickstart.rst +54 -0
  15. vib-0.1.0/docs/speakers.rst +49 -0
  16. vib-0.1.0/docs/to_claude/examples/example-python-project-scitex/data/.gitkeep +0 -0
  17. vib-0.1.0/pyproject.toml +37 -0
  18. vib-0.1.0/service/.env.example +9 -0
  19. vib-0.1.0/service/Dockerfile +20 -0
  20. vib-0.1.0/service/dashboard/__init__.py +0 -0
  21. vib-0.1.0/service/dashboard/consumers.py +92 -0
  22. vib-0.1.0/service/dashboard/forms.py +55 -0
  23. vib-0.1.0/service/dashboard/models.py +116 -0
  24. vib-0.1.0/service/dashboard/routing.py +7 -0
  25. vib-0.1.0/service/dashboard/static/dashboard/app.js +76 -0
  26. vib-0.1.0/service/dashboard/static/dashboard/components.css +353 -0
  27. vib-0.1.0/service/dashboard/static/dashboard/password-checker.js +35 -0
  28. vib-0.1.0/service/dashboard/static/dashboard/style.css +280 -0
  29. vib-0.1.0/service/dashboard/templates/dashboard/index.html +266 -0
  30. vib-0.1.0/service/dashboard/templates/dashboard/login.html +51 -0
  31. vib-0.1.0/service/dashboard/templates/dashboard/register.html +60 -0
  32. vib-0.1.0/service/dashboard/urls.py +15 -0
  33. vib-0.1.0/service/dashboard/views.py +219 -0
  34. vib-0.1.0/service/docker-compose.yml +31 -0
  35. vib-0.1.0/service/manage.py +9 -0
  36. vib-0.1.0/service/vib_service/__init__.py +0 -0
  37. vib-0.1.0/service/vib_service/asgi.py +16 -0
  38. vib-0.1.0/service/vib_service/settings.py +101 -0
  39. vib-0.1.0/service/vib_service/urls.py +5 -0
  40. vib-0.1.0/service/vib_service/wsgi.py +5 -0
  41. vib-0.1.0/src/vib/__init__.py +18 -0
  42. vib-0.1.0/src/vib/_api.py +64 -0
  43. vib-0.1.0/src/vib/_email.py +68 -0
  44. vib-0.1.0/src/vib/_speak.py +168 -0
  45. vib-0.1.0/src/vib/_speaker.py +71 -0
  46. vib-0.1.0/src/vib/_twilio.py +256 -0
  47. vib-0.1.0/src/vib/mcp_server.py +173 -0
  48. vib-0.1.0/src/vib/speaker_cli.py +68 -0
  49. vib-0.1.0/tests/test_vib.py +196 -0
vib-0.1.0/.gitignore ADDED
@@ -0,0 +1,672 @@
1
+ __pycache__/
2
+ *.egg-info/
3
+ dist/
4
+ build/
5
+ *.pyc
6
+ .pytest_cache/
7
+ db.sqlite3
8
+ service/.env
9
+ staticfiles/
10
+ .venv
11
+
12
+ ### Source: /home/ywatanabe/.git-templates/.gitignore-templates/Custom/Specific.gitignore ###
13
+ # Please add files here
14
+
15
+ ### Source: /home/ywatanabe/.git-templates/.gitignore-templates/Custom/Claude.gitignore ###
16
+ docs/to_claude
17
+ docs/from_agents
18
+ docs/from_user
19
+ CLAUDE.md
20
+ .claude
21
+ mgmt
22
+ .mcp.json
23
+
24
+ ### Source: /home/ywatanabe/.git-templates/.gitignore-templates/Custom/Secrets.gitignore ###
25
+ .git-crypt/keys
26
+ **/*secret*
27
+
28
+ ### Source: /home/ywatanabe/.git-templates/.gitignore-templates/Custom/Development.gitignore ###
29
+ # old directories as trash bin
30
+ *old*
31
+ **/*old*
32
+ .old
33
+ **/.old
34
+ .dev
35
+ **/.dev
36
+ .playground
37
+ **/.playground
38
+ **/.dev
39
+ .dev
40
+ **/.legacy
41
+ .legacy
42
+
43
+ # Backup
44
+ **/*_back
45
+ **/*_backup
46
+ **/*_backups
47
+
48
+ # Renaming
49
+ **/.rename_backups
50
+ **/.rename_backups
51
+
52
+ # Logs
53
+ *.log
54
+ **/*.log
55
+ **RUNNING**
56
+ **FINISHED**
57
+ **/RUNNING
58
+ **/FINISHED
59
+ **/202?Y-*
60
+
61
+ # TODO
62
+ **/TODO.md
63
+
64
+ # Memo
65
+ GITIGNORED
66
+
67
+ # Playwright
68
+ .playwright-cli
69
+
70
+ ### Source: /home/ywatanabe/.git-templates/.gitignore-templates/Custom/MyEmacs.gitignore ###
71
+ **/*~undo-tree~
72
+ **/undohist/*
73
+
74
+ ### Source: /home/ywatanabe/.git-templates/.gitignore-templates/Custom/Apptainer.gitignore ###
75
+ **/*.log
76
+ **/*.sandbox/*
77
+ **/*.sif
78
+ **/build-temp-*
79
+
80
+ ### Source: /home/ywatanabe/.git-templates/.gitignore-templates/Custom/Django.gitignore ###
81
+ ./staticfiles*
82
+ ./static/bootstrap*
83
+
84
+ ### Source: /home/ywatanabe/.git-templates/.gitignore-templates/Custom/LargeFiles.gitignore ###
85
+ data/*
86
+
87
+ **/*.csv
88
+ **/*.mat
89
+ **/*.mp4
90
+ **/*.npy
91
+ **/*.pdf
92
+ **/*.pkl
93
+ **/*.png
94
+ **/*.pth
95
+ **/*.pt
96
+ **/*.chk
97
+ **/*.model
98
+ **/*.tiff
99
+ **/*.wav
100
+ **/*.jpg
101
+ **/*.jpeg
102
+ **/*.h5
103
+ **/*.zip
104
+ **/*.tar
105
+ **/*.gz
106
+ **/*.rar
107
+ **/*.7z
108
+ **/*.hdf5
109
+ **/*.npz
110
+ **/*.fits
111
+ **/*.avi
112
+ **/*.mov
113
+ **/*.mkv
114
+ **/*.gif
115
+ **/*.bmp
116
+ **/*.svg
117
+ **/*.psd
118
+ **/*.tif
119
+ **/*.raw
120
+ **/*.nii
121
+ **/*.dicom
122
+ **/*.xls
123
+ **/*.xlsx
124
+ **/*.doc
125
+ **/*.docx
126
+ **/*.ppt
127
+ **/*.pptx
128
+ **/*.txt
129
+ **/*.log
130
+ **/*.db
131
+ **/*.sqlite
132
+ **/*.xml
133
+ **/*.JNB
134
+ **/*.jnb
135
+
136
+ ### Source: /home/ywatanabe/.git-templates/.gitignore-templates/Python.gitignore ###
137
+ # Byte-compiled / optimized / DLL files
138
+ __pycache__/
139
+ *.py[cod]
140
+ *$py.class
141
+
142
+ # C extensions
143
+ *.so
144
+
145
+ # Distribution / packaging
146
+ .Python
147
+ build/
148
+ develop-eggs/
149
+ dist/
150
+ downloads/
151
+ eggs/
152
+ .eggs/
153
+ lib/
154
+ lib64/
155
+ parts/
156
+ sdist/
157
+ var/
158
+ wheels/
159
+ share/python-wheels/
160
+ *.egg-info/
161
+ .installed.cfg
162
+ *.egg
163
+ MANIFEST
164
+
165
+ # PyInstaller
166
+ # Usually these files are written by a python script from a template
167
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
168
+ *.manifest
169
+ *.spec
170
+
171
+ # Installer logs
172
+ pip-log.txt
173
+ pip-delete-this-directory.txt
174
+
175
+ # Unit test / coverage reports
176
+ htmlcov/
177
+ .tox/
178
+ .nox/
179
+ .coverage
180
+ .coverage.*
181
+ .cache
182
+ nosetests.xml
183
+ coverage.xml
184
+ *.cover
185
+ *.py,cover
186
+ .hypothesis/
187
+ .pytest_cache/
188
+ cover/
189
+
190
+ # Translations
191
+ *.mo
192
+ *.pot
193
+
194
+ # Django stuff:
195
+ *.log
196
+ local_settings.py
197
+ db.sqlite3
198
+ db.sqlite3-journal
199
+
200
+ # Flask stuff:
201
+ instance/
202
+ .webassets-cache
203
+
204
+ # Scrapy stuff:
205
+ .scrapy
206
+
207
+ # Sphinx documentation
208
+ docs/_build/
209
+
210
+ # PyBuilder
211
+ .pybuilder/
212
+ target/
213
+
214
+ # Jupyter Notebook
215
+ .ipynb_checkpoints
216
+
217
+ # IPython
218
+ profile_default/
219
+ ipython_config.py
220
+
221
+ # pyenv
222
+ # For a library or package, you might want to ignore these files since the code is
223
+ # intended to run in multiple environments; otherwise, check them in:
224
+ # .python-version
225
+
226
+ # pipenv
227
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
228
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
229
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
230
+ # install all needed dependencies.
231
+ #Pipfile.lock
232
+
233
+ # poetry
234
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
235
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
236
+ # commonly ignored for libraries.
237
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
238
+ #poetry.lock
239
+
240
+ # pdm
241
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
242
+ #pdm.lock
243
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
244
+ # in version control.
245
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
246
+ .pdm.toml
247
+ .pdm-python
248
+ .pdm-build/
249
+
250
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
251
+ __pypackages__/
252
+
253
+ # Celery stuff
254
+ celerybeat-schedule
255
+ celerybeat.pid
256
+
257
+ # SageMath parsed files
258
+ *.sage.py
259
+
260
+ # Environments
261
+ .env
262
+ .venv
263
+ env/
264
+ venv/
265
+ ENV/
266
+ env.bak/
267
+ venv.bak/
268
+
269
+ # Spyder project settings
270
+ .spyderproject
271
+ .spyproject
272
+
273
+ # Rope project settings
274
+ .ropeproject
275
+
276
+ # mkdocs documentation
277
+ /site
278
+
279
+ # mypy
280
+ .mypy_cache/
281
+ .dmypy.json
282
+ dmypy.json
283
+
284
+ # Pyre type checker
285
+ .pyre/
286
+
287
+ # pytype static type analyzer
288
+ .pytype/
289
+
290
+ # Cython debug symbols
291
+ cython_debug/
292
+
293
+ # PyCharm
294
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
295
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
296
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
297
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
298
+ #.idea/
299
+
300
+ ### Source: /home/ywatanabe/.git-templates/.gitignore-templates/Django.gitignore ###
301
+
302
+
303
+ ### Source: /home/ywatanabe/.git-templates/.gitignore-templates/TeX.gitignore ###
304
+ ## Core latex/pdflatex auxiliary files:
305
+ *.aux
306
+ *.lof
307
+ *.log
308
+ *.lot
309
+ *.fls
310
+ *.out
311
+ *.toc
312
+ *.fmt
313
+ *.fot
314
+ *.cb
315
+ *.cb2
316
+ .*.lb
317
+
318
+ ## Intermediate documents:
319
+ *.dvi
320
+ *.xdv
321
+ *-converted-to.*
322
+ # these rules might exclude image files for figures etc.
323
+ # *.ps
324
+ # *.eps
325
+ # *.pdf
326
+
327
+ ## Generated if empty string is given at "Please type another file name for output:"
328
+ .pdf
329
+
330
+ ## Bibliography auxiliary files (bibtex/biblatex/biber):
331
+ *.bbl
332
+ *.bcf
333
+ *.blg
334
+ *-blx.aux
335
+ *-blx.bib
336
+ *.run.xml
337
+
338
+ ## Build tool auxiliary files:
339
+ *.fdb_latexmk
340
+ *.synctex
341
+ *.synctex(busy)
342
+ *.synctex.gz
343
+ *.synctex.gz(busy)
344
+ *.pdfsync
345
+ *.rubbercache
346
+ rubber.cache
347
+
348
+ ## Build tool directories for auxiliary files
349
+ # latexrun
350
+ latex.out/
351
+
352
+ ## Auxiliary and intermediate files from other packages:
353
+ # algorithms
354
+ *.alg
355
+ *.loa
356
+
357
+ # achemso
358
+ acs-*.bib
359
+
360
+ # amsthm
361
+ *.thm
362
+
363
+ # beamer
364
+ *.nav
365
+ *.pre
366
+ *.snm
367
+ *.vrb
368
+
369
+ # changes
370
+ *.soc
371
+
372
+ # comment
373
+ *.cut
374
+
375
+ # cprotect
376
+ *.cpt
377
+
378
+ # elsarticle (documentclass of Elsevier journals)
379
+ *.spl
380
+
381
+ # endnotes
382
+ *.ent
383
+
384
+ # fixme
385
+ *.lox
386
+
387
+ # feynmf/feynmp
388
+ *.mf
389
+ *.mp
390
+ *.t[1-9]
391
+ *.t[1-9][0-9]
392
+ *.tfm
393
+
394
+ #(r)(e)ledmac/(r)(e)ledpar
395
+ *.end
396
+ *.?end
397
+ *.[1-9]
398
+ *.[1-9][0-9]
399
+ *.[1-9][0-9][0-9]
400
+ *.[1-9]R
401
+ *.[1-9][0-9]R
402
+ *.[1-9][0-9][0-9]R
403
+ *.eledsec[1-9]
404
+ *.eledsec[1-9]R
405
+ *.eledsec[1-9][0-9]
406
+ *.eledsec[1-9][0-9]R
407
+ *.eledsec[1-9][0-9][0-9]
408
+ *.eledsec[1-9][0-9][0-9]R
409
+
410
+ # glossaries
411
+ *.acn
412
+ *.acr
413
+ *.glg
414
+ *.glo
415
+ *.gls
416
+ *.glsdefs
417
+ *.lzo
418
+ *.lzs
419
+ *.slg
420
+ *.slo
421
+ *.sls
422
+
423
+ # uncomment this for glossaries-extra (will ignore makeindex's style files!)
424
+ # *.ist
425
+
426
+ # gnuplot
427
+ *.gnuplot
428
+ *.table
429
+
430
+ # gnuplottex
431
+ *-gnuplottex-*
432
+
433
+ # gregoriotex
434
+ *.gaux
435
+ *.glog
436
+ *.gtex
437
+
438
+ # htlatex
439
+ *.4ct
440
+ *.4tc
441
+ *.idv
442
+ *.lg
443
+ *.trc
444
+ *.xref
445
+
446
+ # hypdoc
447
+ *.hd
448
+
449
+ # hyperref
450
+ *.brf
451
+
452
+ # knitr
453
+ *-concordance.tex
454
+ # TODO Uncomment the next line if you use knitr and want to ignore its generated tikz files
455
+ # *.tikz
456
+ *-tikzDictionary
457
+
458
+ # listings
459
+ *.lol
460
+
461
+ # luatexja-ruby
462
+ *.ltjruby
463
+
464
+ # makeidx
465
+ *.idx
466
+ *.ilg
467
+ *.ind
468
+
469
+ # minitoc
470
+ *.maf
471
+ *.mlf
472
+ *.mlt
473
+ *.mtc[0-9]*
474
+ *.slf[0-9]*
475
+ *.slt[0-9]*
476
+ *.stc[0-9]*
477
+
478
+ # minted
479
+ _minted*
480
+ *.pyg
481
+
482
+ # morewrites
483
+ *.mw
484
+
485
+ # newpax
486
+ *.newpax
487
+
488
+ # nomencl
489
+ *.nlg
490
+ *.nlo
491
+ *.nls
492
+
493
+ # pax
494
+ *.pax
495
+
496
+ # pdfpcnotes
497
+ *.pdfpc
498
+
499
+ # sagetex
500
+ *.sagetex.sage
501
+ *.sagetex.py
502
+ *.sagetex.scmd
503
+
504
+ # scrwfile
505
+ *.wrt
506
+
507
+ # svg
508
+ svg-inkscape/
509
+
510
+ # sympy
511
+ *.sout
512
+ *.sympy
513
+ sympy-plots-for-*.tex/
514
+
515
+ # pdfcomment
516
+ *.upa
517
+ *.upb
518
+
519
+ # pythontex
520
+ *.pytxcode
521
+ pythontex-files-*/
522
+
523
+ # tcolorbox
524
+ *.listing
525
+
526
+ # thmtools
527
+ *.loe
528
+
529
+ # TikZ & PGF
530
+ *.dpth
531
+ *.md5
532
+ *.auxlock
533
+
534
+ # titletoc
535
+ *.ptc
536
+
537
+ # todonotes
538
+ *.tdo
539
+
540
+ # vhistory
541
+ *.hst
542
+ *.ver
543
+
544
+ # easy-todo
545
+ *.lod
546
+
547
+ # xcolor
548
+ *.xcp
549
+
550
+ # xmpincl
551
+ *.xmpi
552
+
553
+ # xindy
554
+ *.xdy
555
+
556
+ # xypic precompiled matrices and outlines
557
+ *.xyc
558
+ *.xyd
559
+
560
+ # endfloat
561
+ *.ttt
562
+ *.fff
563
+
564
+ # Latexian
565
+ TSWLatexianTemp*
566
+
567
+ ## Editors:
568
+ # WinEdt
569
+ *.bak
570
+ *.sav
571
+
572
+ # Texpad
573
+ .texpadtmp
574
+
575
+ # LyX
576
+ *.lyx~
577
+
578
+ # Kile
579
+ *.backup
580
+
581
+ # gummi
582
+ .*.swp
583
+
584
+ # KBibTeX
585
+ *~[0-9]*
586
+
587
+ # TeXnicCenter
588
+ *.tps
589
+
590
+ # auto folder when using emacs and auctex
591
+ ./auto/*
592
+ *.el
593
+
594
+ # expex forward references with \gathertags
595
+ *-tags.tex
596
+
597
+ # standalone packages
598
+ *.sta
599
+
600
+ # Makeindex log files
601
+ *.lpz
602
+
603
+ # xwatermark package
604
+ *.xwm
605
+
606
+ # REVTeX puts footnotes in the bibliography by default, unless the nofootinbib
607
+ # option is specified. Footnotes are the stored in a file with suffix Notes.bib.
608
+ # Uncomment the next line to have this generated file ignored.
609
+ #*Notes.bib
610
+
611
+ ### Source: /home/ywatanabe/.git-templates/.gitignore-templates/Global/Emacs.gitignore ###
612
+ # -*- mode: gitignore; -*-
613
+ *~
614
+ \#*\#
615
+ /.emacs.desktop
616
+ /.emacs.desktop.lock
617
+ *.elc
618
+ auto-save-list
619
+ tramp
620
+ .\#*
621
+
622
+ # Org-mode
623
+ .org-id-locations
624
+ *_archive
625
+
626
+ # flymake-mode
627
+ *_flymake.*
628
+
629
+ # eshell files
630
+ /eshell/history
631
+ /eshell/lastdir
632
+
633
+ # elpa packages
634
+ /elpa/
635
+
636
+ # reftex files
637
+ *.rel
638
+
639
+ # AUCTeX auto folder
640
+ /auto/
641
+
642
+ # cask packages
643
+ .cask/
644
+ dist/
645
+
646
+ # Flycheck
647
+ flycheck_*.el
648
+
649
+ # server auth directory
650
+ /server/
651
+
652
+ # projectiles files
653
+ .projectile
654
+
655
+ # directory configuration
656
+ .dir-locals.el
657
+
658
+ # network security
659
+ /network-security.data
660
+
661
+ ### Source: /home/ywatanabe/.git-templates/.gitignore-templates/Custom/SQL.gitignore ###
662
+ **/*.db
663
+ **/*.sqlite3
664
+ *.db-shm
665
+ *.db-wal
666
+
667
+ ### Source: /home/ywatanabe/.git-templates/.gitignore-templates/Custom/GitKeep.gitignore ###
668
+ !.gitkeep
669
+ !**/.gitkeep
670
+
671
+ ### Source: /home/ywatanabe/.git-templates/.gitignore-templates/Custom/SLURM.gitignore ###
672
+ slurm_logs