├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── AGENTS.md ├── COMMANDS.md ├── LICENSE ├── README.md ├── README.zh-CN.md ├── Self-iterative-Software-Paradigm.md ├── bin └── niopd.js ├── core ├── agents │ ├── README.md │ └── niopd │ │ ├── competitor-analyzer.md │ │ ├── data-analyst.md │ │ ├── faq-generator.md │ │ ├── feedback-synthesizer.md │ │ ├── interview-summarizer.md │ │ ├── kpi-tracker.md │ │ ├── market-researcher.md │ │ ├── nio.md │ │ ├── persona-generator.md │ │ ├── presentation-builder.md │ │ ├── roadmap-generator.md │ │ └── story-writer.md ├── commands │ ├── README.md │ └── niopd │ │ ├── analyze-competitor.md │ │ ├── analyze-data.md │ │ ├── draft-prd.md │ │ ├── generate-faq.md │ │ ├── generate-personas.md │ │ ├── generate-update.md │ │ ├── help.md │ │ ├── hi.md │ │ ├── init.md │ │ ├── new-feature-planning.md │ │ ├── new-initiative.md │ │ ├── note.md │ │ ├── org-update-check.md │ │ ├── org-update-new-agent.md │ │ ├── org-update-new-command.md │ │ ├── org-update-new-memory.md │ │ ├── research-trends.md │ │ ├── summarize-feedback.md │ │ ├── summarize-interview.md │ │ ├── track-kpis.md │ │ ├── update-roadmap.md │ │ └── write-stories.md ├── memory.md ├── output-styles │ └── NioPD.md ├── scripts │ ├── README.md │ └── niopd │ │ ├── analyze-competitor.sh │ │ ├── analyze-data.sh │ │ ├── draft-prd.sh │ │ ├── generate-faq.sh │ │ ├── generate-personas.sh │ │ ├── generate-update.sh │ │ ├── help.sh │ │ ├── init.sh │ │ ├── new-initiative.sh │ │ ├── research-trends.sh │ │ ├── save-file.sh │ │ ├── summarize-feedback.sh │ │ ├── summarize-interview.sh │ │ ├── track-kpis.sh │ │ ├── update-roadmap.sh │ │ └── write-stories.sh ├── settings.local.json └── templates │ ├── README.md │ ├── agent-template.md │ ├── command-template.md │ ├── competitor-analysis-template.md │ ├── data-analysis-template.md │ ├── faq-template.md │ ├── feedback-summary-template.md │ ├── initiative-template.md │ ├── interview-summary-template.md │ ├── kpi-report-template.md │ ├── market-research-template.md │ ├── persona-template.md │ ├── prd-daily-template.md │ ├── prd-template.md │ ├── project-update-template.md │ └── user-story-template.md ├── design-NioPD_CN.md ├── design-NioPD_EN.md ├── installer ├── lib ├── ascii_art.txt ├── backup.js ├── config.js ├── error-handler.js ├── file-manager.js ├── i18n.js ├── install.js ├── prompts.js ├── template-processor.js ├── ui.js ├── utils.js └── validator.js ├── package.json ├── scripts └── process-templates.js ├── test-output-iflow ├── analyze-competitor.md ├── analyze-data.md ├── draft-prd.md ├── edit-prd.md ├── generate-personas.md ├── generate-update.md ├── help.md ├── hi.md ├── import-feedback.md ├── init.md ├── new-initiative.md ├── research-trends.md ├── summarize-feedback.md ├── summarize-interview.md ├── track-kpis.md └── update-roadmap.md ├── test-output ├── analyze-competitor.md ├── analyze-data.md ├── draft-prd.md ├── edit-prd.md ├── generate-personas.md ├── generate-update.md ├── help.md ├── hi.md ├── import-feedback.md ├── init.md ├── new-initiative.md ├── research-trends.md ├── summarize-feedback.md ├── summarize-interview.md ├── track-kpis.md └── update-roadmap.md └── test ├── QA-TEST-CASES.md ├── SPRINT1-TEST-CASES.md ├── TEST-REPORT.md ├── core-functionality-test.js ├── detailed-template-processor-test.js ├── file-manager.test.js ├── install.test.js ├── manual-test.js ├── run-sprint1-tests.js ├── sprint1-core-test-results.json ├── sprint2-function-test.js ├── sprint2-test-results.json ├── test-claude-mode.js ├── test-end-to-end.js ├── test-filename-mapping.js ├── test-iflow-mode.js ├── test-init-sh-template.js ├── test-installer-integration.js ├── test-template-processor.js └── utils.test.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/.npmrc -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/AGENTS.md -------------------------------------------------------------------------------- /COMMANDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/COMMANDS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /Self-iterative-Software-Paradigm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/Self-iterative-Software-Paradigm.md -------------------------------------------------------------------------------- /bin/niopd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/bin/niopd.js -------------------------------------------------------------------------------- /core/agents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/agents/README.md -------------------------------------------------------------------------------- /core/agents/niopd/competitor-analyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/agents/niopd/competitor-analyzer.md -------------------------------------------------------------------------------- /core/agents/niopd/data-analyst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/agents/niopd/data-analyst.md -------------------------------------------------------------------------------- /core/agents/niopd/faq-generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/agents/niopd/faq-generator.md -------------------------------------------------------------------------------- /core/agents/niopd/feedback-synthesizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/agents/niopd/feedback-synthesizer.md -------------------------------------------------------------------------------- /core/agents/niopd/interview-summarizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/agents/niopd/interview-summarizer.md -------------------------------------------------------------------------------- /core/agents/niopd/kpi-tracker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/agents/niopd/kpi-tracker.md -------------------------------------------------------------------------------- /core/agents/niopd/market-researcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/agents/niopd/market-researcher.md -------------------------------------------------------------------------------- /core/agents/niopd/nio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/agents/niopd/nio.md -------------------------------------------------------------------------------- /core/agents/niopd/persona-generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/agents/niopd/persona-generator.md -------------------------------------------------------------------------------- /core/agents/niopd/presentation-builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/agents/niopd/presentation-builder.md -------------------------------------------------------------------------------- /core/agents/niopd/roadmap-generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/agents/niopd/roadmap-generator.md -------------------------------------------------------------------------------- /core/agents/niopd/story-writer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/agents/niopd/story-writer.md -------------------------------------------------------------------------------- /core/commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/README.md -------------------------------------------------------------------------------- /core/commands/niopd/analyze-competitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/analyze-competitor.md -------------------------------------------------------------------------------- /core/commands/niopd/analyze-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/analyze-data.md -------------------------------------------------------------------------------- /core/commands/niopd/draft-prd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/draft-prd.md -------------------------------------------------------------------------------- /core/commands/niopd/generate-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/generate-faq.md -------------------------------------------------------------------------------- /core/commands/niopd/generate-personas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/generate-personas.md -------------------------------------------------------------------------------- /core/commands/niopd/generate-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/generate-update.md -------------------------------------------------------------------------------- /core/commands/niopd/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/help.md -------------------------------------------------------------------------------- /core/commands/niopd/hi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/hi.md -------------------------------------------------------------------------------- /core/commands/niopd/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/init.md -------------------------------------------------------------------------------- /core/commands/niopd/new-feature-planning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/new-feature-planning.md -------------------------------------------------------------------------------- /core/commands/niopd/new-initiative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/new-initiative.md -------------------------------------------------------------------------------- /core/commands/niopd/note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/note.md -------------------------------------------------------------------------------- /core/commands/niopd/org-update-check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/org-update-check.md -------------------------------------------------------------------------------- /core/commands/niopd/org-update-new-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/org-update-new-agent.md -------------------------------------------------------------------------------- /core/commands/niopd/org-update-new-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/org-update-new-command.md -------------------------------------------------------------------------------- /core/commands/niopd/org-update-new-memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/org-update-new-memory.md -------------------------------------------------------------------------------- /core/commands/niopd/research-trends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/research-trends.md -------------------------------------------------------------------------------- /core/commands/niopd/summarize-feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/summarize-feedback.md -------------------------------------------------------------------------------- /core/commands/niopd/summarize-interview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/summarize-interview.md -------------------------------------------------------------------------------- /core/commands/niopd/track-kpis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/track-kpis.md -------------------------------------------------------------------------------- /core/commands/niopd/update-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/update-roadmap.md -------------------------------------------------------------------------------- /core/commands/niopd/write-stories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/commands/niopd/write-stories.md -------------------------------------------------------------------------------- /core/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/memory.md -------------------------------------------------------------------------------- /core/output-styles/NioPD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/output-styles/NioPD.md -------------------------------------------------------------------------------- /core/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/scripts/README.md -------------------------------------------------------------------------------- /core/scripts/niopd/analyze-competitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/scripts/niopd/analyze-competitor.sh -------------------------------------------------------------------------------- /core/scripts/niopd/analyze-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/scripts/niopd/analyze-data.sh -------------------------------------------------------------------------------- /core/scripts/niopd/draft-prd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/scripts/niopd/draft-prd.sh -------------------------------------------------------------------------------- /core/scripts/niopd/generate-faq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/scripts/niopd/generate-faq.sh -------------------------------------------------------------------------------- /core/scripts/niopd/generate-personas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/scripts/niopd/generate-personas.sh -------------------------------------------------------------------------------- /core/scripts/niopd/generate-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/scripts/niopd/generate-update.sh -------------------------------------------------------------------------------- /core/scripts/niopd/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/scripts/niopd/help.sh -------------------------------------------------------------------------------- /core/scripts/niopd/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/scripts/niopd/init.sh -------------------------------------------------------------------------------- /core/scripts/niopd/new-initiative.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/scripts/niopd/new-initiative.sh -------------------------------------------------------------------------------- /core/scripts/niopd/research-trends.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/scripts/niopd/research-trends.sh -------------------------------------------------------------------------------- /core/scripts/niopd/save-file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/scripts/niopd/save-file.sh -------------------------------------------------------------------------------- /core/scripts/niopd/summarize-feedback.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/scripts/niopd/summarize-feedback.sh -------------------------------------------------------------------------------- /core/scripts/niopd/summarize-interview.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/scripts/niopd/summarize-interview.sh -------------------------------------------------------------------------------- /core/scripts/niopd/track-kpis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/scripts/niopd/track-kpis.sh -------------------------------------------------------------------------------- /core/scripts/niopd/update-roadmap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/scripts/niopd/update-roadmap.sh -------------------------------------------------------------------------------- /core/scripts/niopd/write-stories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/scripts/niopd/write-stories.sh -------------------------------------------------------------------------------- /core/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/settings.local.json -------------------------------------------------------------------------------- /core/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/templates/README.md -------------------------------------------------------------------------------- /core/templates/agent-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/templates/agent-template.md -------------------------------------------------------------------------------- /core/templates/command-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/templates/command-template.md -------------------------------------------------------------------------------- /core/templates/competitor-analysis-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/templates/competitor-analysis-template.md -------------------------------------------------------------------------------- /core/templates/data-analysis-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/templates/data-analysis-template.md -------------------------------------------------------------------------------- /core/templates/faq-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/templates/faq-template.md -------------------------------------------------------------------------------- /core/templates/feedback-summary-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/templates/feedback-summary-template.md -------------------------------------------------------------------------------- /core/templates/initiative-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/templates/initiative-template.md -------------------------------------------------------------------------------- /core/templates/interview-summary-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/templates/interview-summary-template.md -------------------------------------------------------------------------------- /core/templates/kpi-report-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/templates/kpi-report-template.md -------------------------------------------------------------------------------- /core/templates/market-research-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/templates/market-research-template.md -------------------------------------------------------------------------------- /core/templates/persona-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/templates/persona-template.md -------------------------------------------------------------------------------- /core/templates/prd-daily-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/templates/prd-daily-template.md -------------------------------------------------------------------------------- /core/templates/prd-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/templates/prd-template.md -------------------------------------------------------------------------------- /core/templates/project-update-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/templates/project-update-template.md -------------------------------------------------------------------------------- /core/templates/user-story-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/core/templates/user-story-template.md -------------------------------------------------------------------------------- /design-NioPD_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/design-NioPD_CN.md -------------------------------------------------------------------------------- /design-NioPD_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/design-NioPD_EN.md -------------------------------------------------------------------------------- /installer: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ascii_art.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/lib/ascii_art.txt -------------------------------------------------------------------------------- /lib/backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/lib/backup.js -------------------------------------------------------------------------------- /lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/lib/config.js -------------------------------------------------------------------------------- /lib/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/lib/error-handler.js -------------------------------------------------------------------------------- /lib/file-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/lib/file-manager.js -------------------------------------------------------------------------------- /lib/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/lib/i18n.js -------------------------------------------------------------------------------- /lib/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/lib/install.js -------------------------------------------------------------------------------- /lib/prompts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/lib/prompts.js -------------------------------------------------------------------------------- /lib/template-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/lib/template-processor.js -------------------------------------------------------------------------------- /lib/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/lib/ui.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/lib/utils.js -------------------------------------------------------------------------------- /lib/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/lib/validator.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/package.json -------------------------------------------------------------------------------- /scripts/process-templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/scripts/process-templates.js -------------------------------------------------------------------------------- /test-output-iflow/analyze-competitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output-iflow/analyze-competitor.md -------------------------------------------------------------------------------- /test-output-iflow/analyze-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output-iflow/analyze-data.md -------------------------------------------------------------------------------- /test-output-iflow/draft-prd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output-iflow/draft-prd.md -------------------------------------------------------------------------------- /test-output-iflow/edit-prd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output-iflow/edit-prd.md -------------------------------------------------------------------------------- /test-output-iflow/generate-personas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output-iflow/generate-personas.md -------------------------------------------------------------------------------- /test-output-iflow/generate-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output-iflow/generate-update.md -------------------------------------------------------------------------------- /test-output-iflow/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output-iflow/help.md -------------------------------------------------------------------------------- /test-output-iflow/hi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output-iflow/hi.md -------------------------------------------------------------------------------- /test-output-iflow/import-feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output-iflow/import-feedback.md -------------------------------------------------------------------------------- /test-output-iflow/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output-iflow/init.md -------------------------------------------------------------------------------- /test-output-iflow/new-initiative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output-iflow/new-initiative.md -------------------------------------------------------------------------------- /test-output-iflow/research-trends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output-iflow/research-trends.md -------------------------------------------------------------------------------- /test-output-iflow/summarize-feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output-iflow/summarize-feedback.md -------------------------------------------------------------------------------- /test-output-iflow/summarize-interview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output-iflow/summarize-interview.md -------------------------------------------------------------------------------- /test-output-iflow/track-kpis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output-iflow/track-kpis.md -------------------------------------------------------------------------------- /test-output-iflow/update-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output-iflow/update-roadmap.md -------------------------------------------------------------------------------- /test-output/analyze-competitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output/analyze-competitor.md -------------------------------------------------------------------------------- /test-output/analyze-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output/analyze-data.md -------------------------------------------------------------------------------- /test-output/draft-prd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output/draft-prd.md -------------------------------------------------------------------------------- /test-output/edit-prd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output/edit-prd.md -------------------------------------------------------------------------------- /test-output/generate-personas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output/generate-personas.md -------------------------------------------------------------------------------- /test-output/generate-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output/generate-update.md -------------------------------------------------------------------------------- /test-output/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output/help.md -------------------------------------------------------------------------------- /test-output/hi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output/hi.md -------------------------------------------------------------------------------- /test-output/import-feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output/import-feedback.md -------------------------------------------------------------------------------- /test-output/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output/init.md -------------------------------------------------------------------------------- /test-output/new-initiative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output/new-initiative.md -------------------------------------------------------------------------------- /test-output/research-trends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output/research-trends.md -------------------------------------------------------------------------------- /test-output/summarize-feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output/summarize-feedback.md -------------------------------------------------------------------------------- /test-output/summarize-interview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output/summarize-interview.md -------------------------------------------------------------------------------- /test-output/track-kpis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output/track-kpis.md -------------------------------------------------------------------------------- /test-output/update-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test-output/update-roadmap.md -------------------------------------------------------------------------------- /test/QA-TEST-CASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test/QA-TEST-CASES.md -------------------------------------------------------------------------------- /test/SPRINT1-TEST-CASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test/SPRINT1-TEST-CASES.md -------------------------------------------------------------------------------- /test/TEST-REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test/TEST-REPORT.md -------------------------------------------------------------------------------- /test/core-functionality-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test/core-functionality-test.js -------------------------------------------------------------------------------- /test/detailed-template-processor-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test/detailed-template-processor-test.js -------------------------------------------------------------------------------- /test/file-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test/file-manager.test.js -------------------------------------------------------------------------------- /test/install.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test/install.test.js -------------------------------------------------------------------------------- /test/manual-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test/manual-test.js -------------------------------------------------------------------------------- /test/run-sprint1-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test/run-sprint1-tests.js -------------------------------------------------------------------------------- /test/sprint1-core-test-results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test/sprint1-core-test-results.json -------------------------------------------------------------------------------- /test/sprint2-function-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test/sprint2-function-test.js -------------------------------------------------------------------------------- /test/sprint2-test-results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test/sprint2-test-results.json -------------------------------------------------------------------------------- /test/test-claude-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test/test-claude-mode.js -------------------------------------------------------------------------------- /test/test-end-to-end.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test/test-end-to-end.js -------------------------------------------------------------------------------- /test/test-filename-mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test/test-filename-mapping.js -------------------------------------------------------------------------------- /test/test-iflow-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test/test-iflow-mode.js -------------------------------------------------------------------------------- /test/test-init-sh-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test/test-init-sh-template.js -------------------------------------------------------------------------------- /test/test-installer-integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test/test-installer-integration.js -------------------------------------------------------------------------------- /test/test-template-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test/test-template-processor.js -------------------------------------------------------------------------------- /test/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iflow-ai/NioPD/HEAD/test/utils.test.js --------------------------------------------------------------------------------